explorerbot/AndroidExplorerbotServer/res/layout/activity_main.xml

25 lines
912 B
XML
Raw Normal View History

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" />
</RelativeLayout>