Blame view

GameSDKDemo/src/main/res/layout/activity_main.xml 1.32 KB
d6bc71fcb   赵康   add the project o...
1
2
3
4
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="@android:color/white"
064eb2054   赵康   分离iap支付方法
5
      android:orientation="vertical">
d6bc71fcb   赵康   add the project o...
6
7
8
9
10
11
12
13
14
15
  
      <TextView
          android:id="@+id/version"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:textColor="@color/black_text" />
  
      <TextView
          android:id="@+id/user_info"
064eb2054   赵康   分离iap支付方法
16
          android:layout_width="match_parent"
d6bc71fcb   赵康   add the project o...
17
18
19
20
21
          android:layout_height="wrap_content"
          android:textColor="@android:color/black" />
  
      <Button
          android:id="@+id/login_or_logout"
064eb2054   赵康   分离iap支付方法
22
          android:layout_width="match_parent"
d6bc71fcb   赵康   add the project o...
23
          android:layout_height="wrap_content"
064eb2054   赵康   分离iap支付方法
24
          android:backgroundTint="@color/g_color"
d6bc71fcb   赵康   add the project o...
25
26
          android:enabled="false"
          android:text="Login" />
064eb2054   赵康   分离iap支付方法
27
28
29
30
31
32
      <Button
          android:id="@+id/iap"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:backgroundTint="@color/g_color"
          android:text="IAP"/>
d6bc71fcb   赵康   add the project o...
33
34
35
  
      <Button
          android:id="@+id/pay"
064eb2054   赵康   分离iap支付方法
36
          android:layout_width="match_parent"
d6bc71fcb   赵康   add the project o...
37
          android:layout_height="wrap_content"
064eb2054   赵康   分离iap支付方法
38
          android:backgroundTint="@color/g_color"
d6bc71fcb   赵康   add the project o...
39
40
41
          android:text="pay" />
  
  </LinearLayout>