summaryrefslogtreecommitdiffstats
path: root/Android/res
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-29 15:41:47 +0200
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-29 15:41:47 +0200
commitfe61687b97d55c92bb29bf6aae1288433229353d (patch)
tree3701e23efd1969ebc7a32b51bcabfc08fafa72a4 /Android/res
parentAnvilStats: Overall statistics and mobspawner statistics. (diff)
downloadcuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.gz
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.bz2
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.lz
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.xz
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.zst
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.zip
Diffstat (limited to 'Android/res')
-rw-r--r--Android/res/layout/main.xml37
-rw-r--r--Android/res/values/strings.xml1
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