-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.txt
More file actions
62 lines (49 loc) · 1.17 KB
/
Copy pathconfig.txt
File metadata and controls
62 lines (49 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<LinearLayout
android:layout_height="1"
android:layout_width="2"
android:orientation="A"
android:id="o1">
<TextView
android:layout_height="1"
android:layout_width="2"
android:text="DummyText"
android:id="s1"/>
<TextView
android:layout_height="1"
android:layout_width="3"
android:text="DummyText"
android:id="p1"/>
<RadioGroup
android:layout_height="2"
android:layout_width="3"
android:checkedButton="RB2"
android:button_count="2">
<RadioButton
android:layout_height="2"
android:layout_width="4"
android:text="test"
android:id="RB2"/>
<RadioButton
android:layout_height="2"
android:layout_width="4"
android:text="test"
android:id="RB3"/>
</RadioGroup>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="1">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="imagename"
android:padding="129"
/>
<ProgressBar
android:layout_height="1"
android:layout_width="2"
android:max="5"
android:progress="4"
/>
/*ok ok ok */
</RelativeLayout>
</LinearLayout>