65 lines
2.1 KiB
XML
65 lines
2.1 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:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="48dp"
|
|
android:gravity="center_vertical"
|
|
android:layoutDirection="locale">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:importantForAccessibility="no"
|
|
android:tint="?android:textColorPrimary"
|
|
tools:src="@drawable/ic_fluent_color_24_regular"/>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:paddingVertical="8dp"
|
|
android:layout_weight="1">
|
|
|
|
<TextView android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="marquee"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="16sp"
|
|
android:fadingEdge="horizontal"
|
|
android:text=""/>
|
|
|
|
<TextView android:id="@+id/summary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:layout_below="@id/title"
|
|
android:layout_alignStart="@id/title"
|
|
android:visibility="gone" />
|
|
|
|
</RelativeLayout>
|
|
<Button
|
|
android:id="@+id/button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="32dp"
|
|
android:layout_weight="0"
|
|
android:layout_marginEnd="16dp"
|
|
android:maxWidth="140dp"
|
|
android:elevation="0dp"
|
|
android:ellipsize="middle"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:singleLine="true"
|
|
android:stateListAnimator="@null"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="16sp"
|
|
tools:text="@string/sk_color_palette_pink" />
|
|
|
|
</LinearLayout> |