2021-10-19 11:06:32 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-05-26 17:32:52 -03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2021-10-19 11:06:32 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
android:gravity="center_vertical"
|
2021-10-19 11:06:32 -04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="13dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="13dp">
|
2021-10-19 11:06:32 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/signal_context_menu_item_icon"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:importantForAccessibility="no"
|
2023-01-12 16:10:32 -05:00
|
|
|
tools:src="@drawable/symbol_archive_android_24" />
|
2021-10-19 11:06:32 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/signal_context_menu_item_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:textAppearance="@style/Signal.Text.BodyLarge"
|
2021-10-19 11:06:32 -04:00
|
|
|
tools:text="Archive" />
|
|
|
|
|
|
|
|
</LinearLayout>
|