20 lines
640 B
XML
20 lines
640 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/item_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/white">
|
|
|
|
<TextView
|
|
android:id="@+id/item_id"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="3dp"
|
|
android:gravity="center_vertical"
|
|
android:padding="3dp"
|
|
android:drawableLeft=""
|
|
android:textColor="@color/black"
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
</RelativeLayout> |