53 lines
No EOL
1.9 KiB
XML
53 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
android:id="@+id/divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?inset_divider"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?list_selector"
|
|
android:minHeight="48dp"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="2dp"
|
|
android:paddingBottom="2dp"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginStart="16dp"
|
|
android:fontFamily="@string/font_fontFamily_medium"
|
|
android:textStyle="@integer/font_textStyle_medium"
|
|
android:textSize="14sp"
|
|
android:gravity="center_vertical"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |