2012-08-15 17:24:11 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-08-18 17:00:51 -04:00
|
|
|
android:gravity="center_horizontal"
|
2012-08-15 17:24:11 -04:00
|
|
|
android:orientation="vertical" >
|
2012-08-18 17:00:51 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
2012-08-18 19:42:27 -04:00
|
|
|
|
2012-08-18 17:00:51 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/start_server"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/start" />
|
2012-08-18 19:42:27 -04:00
|
|
|
|
2012-08-18 17:00:51 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/stop_server"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:enabled="true"
|
|
|
|
android:text="@string/stop" />
|
2012-08-18 19:42:27 -04:00
|
|
|
|
2012-08-18 17:00:51 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/server_status_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/mcserver_is_not_running"
|
2012-08-18 19:42:27 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2012-08-18 17:00:51 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/ip_address"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/your_ip" />
|
2012-08-18 20:35:19 -04:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/listView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
</ListView>
|
|
|
|
|
2012-08-15 17:24:11 -04:00
|
|
|
</LinearLayout>
|