|
@@ -0,0 +1,156 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="#ffffff"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/resume_game"
|
|
|
+ android:text="继续游戏"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></Button>
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/stop_game"
|
|
|
+ android:text="退出游戏"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></Button>
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/radio_gp_screen"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/normal"
|
|
|
+ android:text="Normal"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:checked="true"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></RadioButton>
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/sai_2x"
|
|
|
+ android:text="2xSaI"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></RadioButton>
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/scanline_game"
|
|
|
+ android:text="Scanline2x"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></RadioButton>
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="写入存档:"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/archive_1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/archive_2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/archive_3"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/archive_4"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/archive_5"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="读取存档:"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/read_archive_1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/read_archive_2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/read_archive_3"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/read_archive_4"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/read_archive_5"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="NULL"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</LinearLayout>
|