| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="?android:selectableItemBackground">
- <!-- icon -->
- <ImageView
- android:id="@+id/item_icon"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:layout_alignParentLeft="true"
- android:layout_marginLeft="8dp"
- android:layout_marginRight="8dp"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:layout_centerVertical="true"
- />
- <!-- title -->
- <TextView
- android:id="@+id/item_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:layout_marginRight="8dp"
- android:layout_toRightOf="@+id/item_icon"
- android:layout_centerVertical="true"
- android:textSize="18dp" />
- </RelativeLayout>
|