wulkanowy-mod/app/src/main/res/layout/item_more.xml
2019-08-26 20:54:20 +02:00

34 lines
1.2 KiB
XML

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="56dp"
android:background="?selectableItemBackground"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingTop="8dp"
android:paddingRight="16dp"
android:paddingBottom="8dp"
tools:context=".ui.modules.more.MoreItem">
<ImageView
android:id="@+id/moreItemImage"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
app:srcCompat="@drawable/ic_more_settings"
app:tint="?colorOnBackground"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/moreItemTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginStart="32dp"
android:layout_marginLeft="32dp"
android:textSize="16sp"
tools:text="@tools:sample/lorem" />
</LinearLayout>