forked from APIJSON/APIJSON-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect_activity.xml
More file actions
126 lines (98 loc) · 3.43 KB
/
select_activity.xml
File metadata and controls
126 lines (98 loc) · 3.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/activity_page" >
<LinearLayout
style="@style/match_match"
android:orientation="vertical" >
<Button
android:id="@+id/tvSelectLogin"
style="@style/match_wrap"
android:text="@string/login" />
<TextView
style="@style/select_name"
android:text="@string/post"
android:textColor="@android:color/black" />
<Button
android:id="@+id/btnSelectPost"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/put" />
<Button
android:id="@+id/btnSelectPut"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/delete"
android:textColor="@android:color/black" />
<Button
android:id="@+id/btnSelectDelete"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/get"
android:textColor="@android:color/black" />
<TextView
style="@style/select_name"
android:text="@string/single" />
<Button
android:id="@+id/btnSelectSingle"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/columns" />
<Button
android:id="@+id/btnSelectColumns"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/rely" />
<Button
android:id="@+id/btnSelectRely"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/array" />
<Button
android:id="@+id/btnSelectArray"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/complex" />
<Button
android:id="@+id/btnSelectComplex"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/access_error" />
<Button
android:id="@+id/btnSelectAccessError"
style="@style/select_json" />
<TextView
style="@style/select_name"
android:text="@string/access_permitted" />
<Button
android:id="@+id/btnSelectAccessPermitted"
style="@style/select_json" />
<Button
style="@style/match_wrap"
android:layout_marginTop="30dp"
android:onClick="toAuto"
android:text="@string/auto" />
<Button
style="@style/match_wrap"
android:layout_marginTop="30dp"
android:onClick="toUnit"
android:text="@string/unit" />
<Button
style="@style/match_wrap"
android:layout_marginTop="30dp"
android:onClick="toUI"
android:text="@string/ui" />
<Button
android:onClick="toUpdateLog"
style="@style/match_wrap"
android:layout_marginTop="30dp"
android:text="@string/update_log" />
</LinearLayout>
</ScrollView>