guild_demo.xml
5.3 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
127
128
129
130
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff2ecdb"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadingEdge="vertical"
android:scrollbars="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/DemoMsg"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
android:textColor="#ffff0000" />
<Button
android:id="@+id/testLoginModuleBtn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/guild_border"
android:text="登录模块" />
<Button
android:id="@+id/TestQuestionModule"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/guild_border"
android:text="小程序测试" />
<Button
android:id="@+id/testOpenWebviewBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/guild_border"
android:text="打开Webview" />
<LinearLayout
android:id="@+id/guild_demo_pay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<EditText
android:id="@+id/guild_demo_propsid"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="输入道具id"
android:inputType="text"
android:padding="0.0dip"
android:textSize="16sp" />
<EditText
android:id="@+id/guild_demo_money"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="输入money"
android:inputType="text"
android:padding="0.0dip"
android:textSize="16sp" />
<Button
android:id="@+id/paymentBtnOne"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/guild_border"
android:hint="定额支付" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/upload_create"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="创建角色"/>
<Button
android:id="@+id/upload_entergame"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="进入游戏"/>
<Button
android:id="@+id/upload_levelup"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="升级"/>
</LinearLayout>
<Button
android:id="@+id/paymentBtnTwo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:background="@drawable/guild_border"
android:text="切换账户" />
<Button
android:id="@+id/user_logout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/guild_border"
android:text="账号退出" />
<Button
android:id="@+id/bindMBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/guild_border"
android:text="测试用按钮" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>