|
@@ -1,18 +1,72 @@
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
- xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
- xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
+ android:id="@+id/main_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
- tools:context=".MainActivity">
|
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <TextView
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+
|
|
|
|
+ <EditText
|
|
|
|
+ android:id="@+id/et_rom"
|
|
|
|
+ android:layout_width="1000px"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:hint="input rom path"
|
|
|
|
+ android:textColor="#000000"
|
|
|
|
+ android:textColorHint="#c0c0c0"></EditText>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+
|
|
|
|
+ <EditText
|
|
|
|
+ android:id="@+id/et_libs"
|
|
|
|
+ android:layout_width="1000px"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:hint="input lib so path"
|
|
|
|
+ android:textColor="#000000"
|
|
|
|
+ android:textColorHint="#c0c0c0"></EditText>
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+ <EditText
|
|
|
|
+ android:id="@+id/et_config"
|
|
|
|
+ android:layout_width="1000px"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:hint="input config path"
|
|
|
|
+ android:textColor="#000000"
|
|
|
|
+ android:textColorHint="#c0c0c0"></EditText>
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/btn_start_local_game"
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:text="Hello World!"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
+ android:text="START LOCAL"></Button>
|
|
|
|
+
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/btn_start_net_game_p1"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+
|
|
|
|
+ android:text="START P1"></Button>
|
|
|
|
+
|
|
|
|
+ <Button
|
|
|
|
+ android:id="@+id/btn_start_net_game_p2"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_margin="0px"
|
|
|
|
+ android:text="START P1"></Button>
|
|
|
|
+
|
|
|
|
|
|
-</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
+</LinearLayout>
|