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
67 lines (52 loc) · 2.04 KB
/
select_activity.xml
File metadata and controls
67 lines (52 loc) · 2.04 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
<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="@string/single" />
<Button
style="@style/select_json"
android:onClick="selectSingle"
android:text="@string/demo_single" />
<TextView
style="@style/select_name"
android:text="@string/rely" />
<Button
style="@style/select_json"
android:onClick="selectRely"
android:text="@string/demo_rely" />
<TextView
style="@style/select_name"
android:text="@string/array" />
<Button
style="@style/select_json"
android:onClick="selectArray"
android:text="@string/demo_array" />
<TextView
style="@style/select_name"
android:text="@string/complex" />
<Button
style="@style/select_json"
android:onClick="selectComplex"
android:text="@string/demo_complex" />
<TextView
style="@style/select_name"
android:text="@string/access_error" />
<Button
style="@style/select_json"
android:onClick="selectAccessError"
android:text="@string/demo_wallet" />
<TextView
style="@style/select_name"
android:text="@string/access_permitted" />
<Button
style="@style/select_json"
android:onClick="selectAccessPermitted"
android:text="@string/demo_wallet_with_access" />
</LinearLayout>
</ScrollView>
</LinearLayout>