Blame view
app/src/main/res/layout/activity_main.xml
1.9 KB
c507bd179
![]() |
1 2 3 |
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
c507bd179
![]() |
4 5 6 7 8 9 10 11 |
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:id="@+id/info" |
f905cc410
![]() |
12 13 14 |
android:layout_width="match_parent" android:layout_height="wrap_content" android:lines="2"/> |
c507bd179
![]() |
15 16 17 18 19 20 |
<Button android:id="@+id/login" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="login"/> |
c507bd179
![]() |
21 |
|
f905cc410
![]() |
22 23 |
<LinearLayout android:id="@+id/main_layout" |
c507bd179
![]() |
24 |
android:layout_width="match_parent" |
f905cc410
![]() |
25 26 27 28 29 30 31 32 33 34 35 |
android:layout_height="match_parent" android:orientation="vertical" android:visibility="gone"> <Button android:id="@+id/check" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="check payemnt state"/> <Button |
9e8388286
![]() |
36 |
android:id="@+id/link" |
f905cc410
![]() |
37 38 |
android:layout_width="match_parent" android:layout_height="wrap_content" |
9e8388286
![]() |
39 |
android:text="Link Gump account"/> |
f905cc410
![]() |
40 41 42 43 44 45 46 47 |
<Button android:id="@+id/switch_acc" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Switch to games player"/> <Button |
f905cc410
![]() |
48 49 50 51 52 |
android:id="@+id/iab" android:layout_width="match_parent" android:layout_height="wrap_content" android:enabled="false" android:text="Iab"/> |
c507bd179
![]() |
53 |
|
f905cc410
![]() |
54 55 56 57 58 59 60 |
<Button android:id="@+id/pay" android:layout_width="match_parent" android:layout_height="wrap_content" android:enabled="false" android:text="Payment"/> </LinearLayout> |
c507bd179
![]() |
61 |
</LinearLayout> |