25 lines
912 B
XML
25 lines
912 B
XML
|
<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>
|