wangguan
2020-12-26 e371272a7885723c7b0ef31a20ae5d0fbead1d30
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
 
    <LinearLayout
        android:id="@+id/demo_game_login_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="游戏登录界面"
            android:textSize="22sp" />
 
 
        <Button
            android:id="@+id/userLogin"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="用户登录(userLogin)" />
 
 
        <Button
            android:id="@+id/getConfig"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="获取游戏参数(服务端gid、pid以安卓端获取的为准)" />
 
 
    </LinearLayout>
 
 
    <LinearLayout
        android:id="@+id/demo_game_enter_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="游戏选择服务器界面"
            android:textSize="22sp" />
 
        <Button
            android:id="@+id/creatRoleBtn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="创建角色(roleCreate)" />
 
        <Button
            android:id="@+id/submitDataBtn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="进入游戏(roleEnterGame)" />
 
 
    </LinearLayout>
 
    <LinearLayout
        android:id="@+id/demo_game_main_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="游戏主界面"
            android:textSize="22sp" />
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="left"
            android:text="角色相关的接口"
            android:textSize="18sp" />
 
        <Button
            android:id="@+id/upgradeDataBtn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="角色升级(roleLevelUp)" />
 
        <Button
            android:id="@+id/updateDataBtn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="角色改名(roleChangeName)【选接】" />
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="left"
            android:text="账号相关的接口"
            android:textSize="18sp" />
 
        <Button
            android:id="@+id/userSwitch"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="切换账号(userSwitch)" />
 
        <Button
            android:id="@+id/openUserAuthWeb"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="实名认证(openUserNameAuth)" />
 
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="left"
            android:text="支付相关的接口"
            android:textSize="18sp" />
 
        <Button
            android:id="@+id/userPay"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="定额支付(userPay)" />
 
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="left"
            android:text="退出的接口"
            android:textSize="18sp" />
 
        <Button
            android:id="@+id/showExit"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="退出游戏(doExitGame)" />
 
 
    </LinearLayout>
 
 
</LinearLayout>