39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="64dp"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:focusable="true"
|
|
android:clickable="true"
|
|
android:paddingStart="8dp"
|
|
android:paddingEnd="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:paddingTop="8dp"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/item"
|
|
android:gravity="center_vertical|start">
|
|
<ImageView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:padding="8dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:src="@mipmap/ic_launcher_foreground"
|
|
android:contentDescription="icon"
|
|
android:id="@+id/icon"
|
|
tools:ignore="HardcodedText" />
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical|start"
|
|
android:paddingEnd="24dp"
|
|
android:lines="1"
|
|
android:textAlignment="viewStart"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:textColor="@color/colorPrimaryText"
|
|
style="@style/AnotherWidget.Settings.Title"/>
|
|
</LinearLayout> |