Blame view
android/GameSDKSample/res/layout/activity_main.xml
1.03 KB
|
7bb951594
|
1 2 3 4 5 6 7 |
<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"
android:orientation="vertical" >
<TextView
|
|
3b0b01ef6
|
8 9 10 |
android:id="@+id/version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
c04253501
|
11 12 |
android:layout_gravity="center_horizontal"
android:textColor="@color/black_text" />
|
|
3b0b01ef6
|
13 14 |
<TextView
|
|
7bb951594
|
15 16 |
android:id="@+id/user_info"
android:layout_width="wrap_content"
|
|
3b0b01ef6
|
17 18 |
android:layout_height="wrap_content"
android:textColor="@android:color/black" />
|
|
7bb951594
|
19 20 |
<Button
|
|
3b0b01ef6
|
21 |
android:id="@+id/login_or_logout" |
|
7bb951594
|
22 23 |
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
4c1c42af5
|
24 |
android:enabled="false" |
|
3b0b01ef6
|
25 |
android:text="Login" /> |
|
7bb951594
|
26 27 |
<Button
|
|
7bb951594
|
28 29 30 31 32 33 |
android:id="@+id/pay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="pay" />
</LinearLayout>
|