2014-03-08 22:56:11 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/image"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="@android:color/background_dark"
|
|
|
|
android:padding="20dp"
|
|
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/image"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:text="@string/srv"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
2014-03-09 16:55:30 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/text"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:text="@string/explain" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/killserverbutton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/textView1"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:text="@string/killserver" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/startvideo"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:src="@drawable/ic_device_access_video" />
|
|
|
|
|
2014-03-08 22:56:11 +01:00
|
|
|
</RelativeLayout>
|