18 lines
599 B
XML
18 lines
599 B
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/selector_demo_list"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="18sp"
|
|
android:gravity="left|center_vertical"
|
|
android:paddingLeft="5dp"
|
|
/>
|
|
|
|
</RelativeLayout> |