Blame view
android/GameSDKSample/res/layout/activity_main.xml
975 Bytes
|
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 11 12 13 |
android:id="@+id/version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />
<TextView
|
|
7bb951594
|
14 15 |
android:id="@+id/user_info"
android:layout_width="wrap_content"
|
|
3b0b01ef6
|
16 17 |
android:layout_height="wrap_content"
android:textColor="@android:color/black" />
|
|
7bb951594
|
18 19 |
<Button
|
|
3b0b01ef6
|
20 |
android:id="@+id/login_or_logout" |
|
7bb951594
|
21 22 |
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
3b0b01ef6
|
23 |
android:text="Login" /> |
|
7bb951594
|
24 25 |
<Button
|
|
7bb951594
|
26 27 28 29 30 31 |
android:id="@+id/pay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="pay" />
</LinearLayout>
|