Archived
24 lines
818 B
XML
24 lines
818 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="horizontal" android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:clickable="true"
|
||
|
|
android:focusable="true"
|
||
|
|
style="@style/SelectableItemBackground"
|
||
|
|
android:id="@+id/item_layout">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/item_image"
|
||
|
|
android:layout_width="24dp"
|
||
|
|
android:layout_height="24dp"
|
||
|
|
android:layout_margin="16dp"
|
||
|
|
android:tint="?attr/colorText"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/item_text"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="?attr/colorText"
|
||
|
|
android:layout_gravity="center_vertical"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|