33 lines
No EOL
1.2 KiB
XML
33 lines
No EOL
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="wrap_content"
|
|
android:background="?selectableItemBackground"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="16dp"
|
|
android:paddingTop="13dp"
|
|
android:paddingEnd="16dp"
|
|
android:paddingBottom="13dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/signal_context_menu_item_icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:importantForAccessibility="no"
|
|
app:tint="@color/signal_colorOnSurface"
|
|
tools:src="@drawable/ic_archive_24dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/signal_context_menu_item_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_weight="1"
|
|
android:textAppearance="@style/Signal.Text.BodyLarge"
|
|
android:textColor="@color/signal_colorOnSurface"
|
|
tools:text="Archive" />
|
|
|
|
</LinearLayout> |