2018-10-22 22:47:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-02-14 22:23:52 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-22 22:47:54 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:background="?selectableItemBackground"
|
2018-10-22 22:47:54 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingRight="16dp"
|
2019-02-14 22:23:52 +01:00
|
|
|
android:paddingBottom="8dp"
|
2020-05-01 17:38:19 +02:00
|
|
|
tools:context=".ui.modules.more.MoreAdapter">
|
2018-10-22 22:47:54 +02:00
|
|
|
|
2019-08-26 20:54:20 +02:00
|
|
|
<ImageView
|
2018-10-22 22:47:54 +02:00
|
|
|
android:id="@+id/moreItemImage"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
2019-08-26 20:54:20 +02:00
|
|
|
app:srcCompat="@drawable/ic_more_settings"
|
|
|
|
app:tint="?colorOnBackground"
|
|
|
|
tools:ignore="ContentDescription" />
|
2018-10-22 22:47:54 +02:00
|
|
|
|
2019-08-26 20:54:20 +02:00
|
|
|
<TextView
|
2018-10-22 22:47:54 +02:00
|
|
|
android:id="@+id/moreItemTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="32dp"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
tools:text="@tools:sample/lorem" />
|
2018-10-22 22:47:54 +02:00
|
|
|
</LinearLayout>
|