123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <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"
- android:background="@android:color/white"
- >
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" android:padding="5dp">
- <Button
- android:id="@+id/login"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="登录" />
- <Button
- android:layout_margin="1dp"
- android:id="@+id/logout_user"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="登出" />
- <Button
- android:layout_margin="1dp"
- android:id="@+id/switch_user"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="切换用户" />
- <Button
- android:layout_margin="1dp"
- android:id="@+id/sub_data"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="提交角色数据" />
- <Button
- android:layout_margin="1dp"
- android:id="@+id/exit_game"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="退出游戏" />
- <Button
- android:layout_margin="1dp"
- android:id="@+id/btn_pay"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="支付" />
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
|