Blame view

GameSDKDemo/src/main/res/layout/activity_main.xml 1.99 KB
d6bc71fcb   赵康   add the project o...
1
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
969c0010c   赵康   v4.1.6:修复gp支付无回调的bug
2
3
4
5
6
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@android:color/white"
                android:fitsSystemWindows="true"
                android:orientation="vertical">
d6bc71fcb   赵康   add the project o...
7
8
9
10
11
12
  
      <TextView
          android:id="@+id/version"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
969c0010c   赵康   v4.1.6:修复gp支付无回调的bug
13
          android:textColor="@color/black_text"/>
d6bc71fcb   赵康   add the project o...
14
15
16
  
      <TextView
          android:id="@+id/user_info"
064eb2054   赵康   分离iap支付方法
17
          android:layout_width="match_parent"
d6bc71fcb   赵康   add the project o...
18
          android:layout_height="wrap_content"
969c0010c   赵康   v4.1.6:修复gp支付无回调的bug
19
          android:textColor="@android:color/black"/>
d6bc71fcb   赵康   add the project o...
20
21
  
      <Button
d42a06680   赵康   remove wechat log...
22
23
24
25
26
          android:id="@+id/init"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:backgroundTint="@color/g_color"
          android:enabled="false"
4a6edc661   赵康   SDK v4.7.0:增加支付弹窗...
27
          android:text="@string/init"/>
d42a06680   赵康   remove wechat log...
28
29
  
      <Button
d6bc71fcb   赵康   add the project o...
30
          android:id="@+id/login_or_logout"
064eb2054   赵康   分离iap支付方法
31
          android:layout_width="match_parent"
d6bc71fcb   赵康   add the project o...
32
          android:layout_height="wrap_content"
064eb2054   赵康   分离iap支付方法
33
          android:backgroundTint="@color/g_color"
d6bc71fcb   赵康   add the project o...
34
          android:enabled="false"
4a6edc661   赵康   SDK v4.7.0:增加支付弹窗...
35
36
37
38
39
40
41
42
43
          android:text="@string/login"/>
  
      <Button
          android:id="@+id/check_state"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:backgroundTint="@color/g_color"
          android:enabled="false"
          android:text="@string/check"/>
969c0010c   赵康   v4.1.6:修复gp支付无回调的bug
44

064eb2054   赵康   分离iap支付方法
45
46
47
48
49
      <Button
          android:id="@+id/iap"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:backgroundTint="@color/g_color"
4a6edc661   赵康   SDK v4.7.0:增加支付弹窗...
50
51
          android:enabled="false"
          android:text="@string/iap"/>
d6bc71fcb   赵康   add the project o...
52
53
54
  
      <Button
          android:id="@+id/pay"
064eb2054   赵康   分离iap支付方法
55
          android:layout_width="match_parent"
d6bc71fcb   赵康   add the project o...
56
          android:layout_height="wrap_content"
064eb2054   赵康   分离iap支付方法
57
          android:backgroundTint="@color/g_color"
4a6edc661   赵康   SDK v4.7.0:增加支付弹窗...
58
59
          android:enabled="false"
          android:text="@string/pay"/>
d6bc71fcb   赵康   add the project o...
60

472513368   赵康   取消游客绑定提醒
61

d6bc71fcb   赵康   add the project o...
62
  </LinearLayout>