activity_main.xml
2.1 KB
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lines="2"/>
<Button
android:id="@+id/login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="login"/>
<LinearLayout
android:id="@+id/main_layout"
android:layout_width="match_parent"
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
android:id="@+id/bind"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Bind Gump account"/>
<Button
android:id="@+id/switch_acc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Switch to games player"/>
<Button
android:id="@+id/switch_gump"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Switch to gump player"/>
<Button
android:id="@+id/iab"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false"
android:text="Iab"/>
<Button
android:id="@+id/pay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false"
android:text="Payment"/>
</LinearLayout>
</LinearLayout>