forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect_activity.xml
More file actions
49 lines (38 loc) · 1.42 KB
/
Copy pathselect_activity.xml
File metadata and controls
49 lines (38 loc) · 1.42 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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/activity_page" >
<ScrollView style="@style/match_match" >
<LinearLayout
style="@style/match_match"
android:orientation="vertical" >
<TextView
style="@style/select_name"
android:text="Single" />
<Button
style="@style/select_json"
android:onClick="selectSingle"
android:text="@string/demo_single" />
<TextView
style="@style/select_name"
android:text="Rely" />
<Button
style="@style/select_json"
android:onClick="selectRely"
android:text="@string/demo_rely" />
<TextView
style="@style/select_name"
android:text="Array" />
<Button
style="@style/select_json"
android:onClick="selectArray"
android:text="@string/demo_array" />
<TextView
style="@style/select_name"
android:text="Complex" />
<Button
style="@style/select_json"
android:onClick="selectComplex"
android:text="@string/demo_complex" />
</LinearLayout>
</ScrollView>
</LinearLayout>