wulkanowy-mod/app/src/main/res/layout/item_more.xml

34 lines
1.2 KiB
XML
Raw Normal View History

2018-10-22 15:47:54 -05: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"
xmlns:tools="http://schemas.android.com/tools"
2018-10-22 15:47:54 -05:00
android:layout_width="match_parent"
android:layout_height="56dp"
2019-08-26 13:54:20 -05:00
android:background="?selectableItemBackground"
2018-10-22 15:47:54 -05:00
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingTop="8dp"
android:paddingRight="16dp"
android:paddingBottom="8dp"
tools:context=".ui.modules.more.MoreItem">
2018-10-22 15:47:54 -05:00
2019-08-26 13:54:20 -05:00
<ImageView
2018-10-22 15:47:54 -05:00
android:id="@+id/moreItemImage"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
2019-08-26 13:54:20 -05:00
app:srcCompat="@drawable/ic_more_settings"
app:tint="?colorOnBackground"
tools:ignore="ContentDescription" />
2018-10-22 15:47:54 -05:00
2019-08-26 13:54:20 -05:00
<TextView
2018-10-22 15:47:54 -05:00
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"
2019-08-26 13:54:20 -05:00
android:textSize="16sp"
tools:text="@tools:sample/lorem" />
2018-10-22 15:47:54 -05:00
</LinearLayout>