Blame view
app/src/main/res/layout/activity_main.xml
2.1 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
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"/>
|
|
c507bd179
|
59 |
|
|
f905cc410
|
60 61 62 63 64 65 66 |
<Button
android:id="@+id/pay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false"
android:text="Payment"/>
</LinearLayout>
|
|
c507bd179
|
67 |
</LinearLayout> |