/res/layout/help_item.xml
XML | 29 lines | 27 code | 2 blank | 0 comment | 0 complexity | 38e5ccc2561508b38854e86e5a889b54 MD5 | raw file
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/help_item"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <ImageView
- android:id="@+id/help_img"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:contentDescription="@string/empty"
- android:src="@drawable/screenshot_01" />
- <TextView
- android:id="@+id/help_txt"
- android:text="@string/app_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/help_img"
- android:background="@android:color/background_dark"
- android:textColor="@android:color/white"/>
- <View
- android:layout_below="@id/help_txt"
- android:layout_width="match_parent"
- android:layout_height="5dp"/>
- </RelativeLayout>