Subversion Repositories Projects

Rev

Rev 212 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
212 ligi 1
<?xml version="1.0" encoding="utf-8"?>
2
 
3
 
4
 
5
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
6
    android:orientation="vertical"
7
    android:layout_width="fill_parent"
8
    android:layout_height="fill_parent">
9
 
10
 
11
 
12
    <LinearLayout
13
        android:orientation="vertical"
14
        android:layout_width="fill_parent"
15
       android:layout_height="wrap_content">
16
 
17
 
18
 
19
     <CheckBox android:id="@+id/check_fullspeed"
20
            android:paddingBottom="24sp"
21
                android:paddingTop="24sp"
22
            android:layout_width="wrap_content"
23
            android:layout_height="wrap_content"
24
            android:text="Allow Full Speed" />
25
 
26
        <View
27
 
28
                android:layout_height="2px"
29
                   android:layout_width="fill_parent"
30
 
31
                android:background="#DDFFDD"
32
                android:layout_marginTop="5dip"
33
                android:layout_marginBottom="5dip"/>
34
 
35
 
36
    <TextView
37
            android:layout_width="fill_parent"
38
            android:layout_height="wrap_content"
39
            android:layout_marginTop="5dip"
40
            android:text="Front:"
41
            android:textAppearance="?android:attr/textAppearanceLarge"
42
            android:focusable="true"
43
        />
44
 
45
 
46
    <SeekBar android:id="@+id/seek_front"
47
        android:layout_width="fill_parent"
48
        android:layout_height="wrap_content"
49
        android:max="255"
50
        android:progress="0"
51
        android:secondaryProgress="255"
52
            android:focusable="true"
53
 />
54
 
55
 
56
 
57
    <TextView
58
            android:layout_width="fill_parent"
59
            android:layout_height="wrap_content"
60
            android:layout_marginTop="5dip"
61
            android:text="Back:"
62
            android:textAppearance="?android:attr/textAppearanceLarge"
63
            android:focusable="true"
64
        />
65
 
66
 
67
    <SeekBar android:id="@+id/seek_back"
68
        android:layout_width="fill_parent"
69
        android:layout_height="wrap_content"
70
        android:max="255"
71
        android:progress="0"
72
        android:secondaryProgress="255" />
73
 
74
 
75
 
76
 
77
 
78
    <TextView
79
            android:layout_width="fill_parent"
80
            android:layout_height="wrap_content"
81
            android:layout_marginTop="5dip"
82
            android:text="Left:"
83
            android:textAppearance="?android:attr/textAppearanceLarge"
84
            android:focusable="true"
85
        />
86
 
87
 
88
    <SeekBar android:id="@+id/seek_left"
89
        android:layout_width="fill_parent"
90
        android:layout_height="wrap_content"
91
        android:max="255"
92
        android:progress="0"
93
        android:secondaryProgress="255" />
94
 
95
 
96
 
97
 
98
 
99
    <TextView
100
            android:layout_width="fill_parent"
101
            android:layout_height="wrap_content"
102
            android:layout_marginTop="5dip"
103
            android:text="Right:"
104
            android:textAppearance="?android:attr/textAppearanceLarge"
105
            android:focusable="true"
106
        />
107
 
108
 
109
    <SeekBar android:id="@+id/seek_right"
110
        android:layout_width="fill_parent"
111
        android:layout_height="wrap_content"
112
        android:max="255"
113
        android:progress="0"
114
        android:secondaryProgress="255" />
115
 
116
 
117
 
118
        <View
119
 
120
                android:layout_height="2px"
121
                   android:layout_width="fill_parent"
122
 
123
                android:background="#DDFFDD"
124
                android:layout_marginTop="15dip"
125
                android:layout_marginBottom="5dip"/>
126
 
127
    <TextView
128
            android:layout_width="fill_parent"
129
            android:layout_height="wrap_content"
130
            android:layout_marginTop="5dip"
131
            android:text="All:"
132
            android:textAppearance="?android:attr/textAppearanceLarge"
133
            android:focusable="true"
134
        />
135
 
136
 
137
    <SeekBar android:id="@+id/seek_all"
138
        android:layout_width="fill_parent"
139
        android:layout_height="wrap_content"
140
        android:max="255"
141
        android:progress="0"
142
        android:secondaryProgress="255" />
143
 
144
    </LinearLayout>
145
 
146
 
147
</ScrollView>
148
 
149
 
150
 
151