diff options
Diffstat (limited to '')
-rw-r--r-- | Android/res/layout/main.xml | 37 | ||||
-rw-r--r-- | Android/res/values/strings.xml | 1 |
2 files changed, 27 insertions, 11 deletions
diff --git a/Android/res/layout/main.xml b/Android/res/layout/main.xml index dd5ee0e8f..1895e2752 100644 --- a/Android/res/layout/main.xml +++ b/Android/res/layout/main.xml @@ -11,19 +11,34 @@ android:layout_height="wrap_content"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceLarge" />
-
- <Button
- android:id="@+id/start_server"
+
+ <LinearLayout
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/start" />
+ android:layout_height="wrap_content" >
+
+ <Button
+ android:id="@+id/stop_server"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:enabled="true"
+ android:text="@string/stop" />
+
+ <Button
+ android:id="@+id/start_server"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="@string/start" />
+
+ <Button
+ android:id="@+id/configure_server"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="@string/configure" />
- <Button
- android:id="@+id/stop_server"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:enabled="true"
- android:text="@string/stop" />
+ </LinearLayout>
<TextView
android:id="@+id/server_status_text"
diff --git a/Android/res/values/strings.xml b/Android/res/values/strings.xml index 9fce753a4..aa5978dc0 100644 --- a/Android/res/values/strings.xml +++ b/Android/res/values/strings.xml @@ -8,5 +8,6 @@ <string name="mcserver_is_running">MCServer is running</string> <string name="mcserver_is_not_running">MCServer is not running</string> <string name="your_ip">Your IP …</string>
+ <string name="configure">Configure</string>
</resources>
\ No newline at end of file |