Blame view
GameSDKDemo/src/main/res/layout/activity_main.xml
1.32 KB
d6bc71fcb
![]() |
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
![]() |
5 |
android:orientation="vertical"> |
d6bc71fcb
![]() |
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
![]() |
16 |
android:layout_width="match_parent" |
d6bc71fcb
![]() |
17 18 19 20 21 |
android:layout_height="wrap_content" android:textColor="@android:color/black" /> <Button android:id="@+id/login_or_logout" |
064eb2054
![]() |
22 |
android:layout_width="match_parent" |
d6bc71fcb
![]() |
23 |
android:layout_height="wrap_content" |
064eb2054
![]() |
24 |
android:backgroundTint="@color/g_color" |
d6bc71fcb
![]() |
25 26 |
android:enabled="false" android:text="Login" /> |
064eb2054
![]() |
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
![]() |
33 34 35 |
<Button android:id="@+id/pay" |
064eb2054
![]() |
36 |
android:layout_width="match_parent" |
d6bc71fcb
![]() |
37 |
android:layout_height="wrap_content" |
064eb2054
![]() |
38 |
android:backgroundTint="@color/g_color" |
d6bc71fcb
![]() |
39 40 41 |
android:text="pay" /> </LinearLayout> |