26bebb9811
AppCompat 1.2.0 to 1.5.1 Lifecycle 2.3.1 to 2.5.1 Navigation 2.3.5 to 2.5.2 Fragment 1.3.5 to 1.5.2 Annotations 1.2.0 to 1.4.0 Window 1.0.0-alpha09 to 1.0.0 AAPT2 to 7.0.4 Fragment-Testing 1.3.5 to 1.5.2 (matching Fragment)
45 lines
1.9 KiB
XML
45 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
tools:viewBindingIgnore="true"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/reminder_background_normal"
|
|
android:focusable="true"
|
|
android:nextFocusRight="@+id/cancel"
|
|
android:orientation="horizontal"
|
|
tools:visibility="visible">
|
|
|
|
<ImageView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:src="@drawable/ic_alert"
|
|
app:tint="@color/signal_icon_tint_primary"/>
|
|
|
|
<TextView android:id="@+id/unverified_text"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/signal_text_primary"
|
|
android:textSize="16sp"
|
|
android:layout_weight="1"
|
|
android:layout_margin="16dp"
|
|
tools:text="Your safety number with Jules Bonnot has changed and is no longer verified"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/cancel"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_marginTop="2dp"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:focusable="true"
|
|
android:nextFocusLeft="@+id/container"
|
|
android:nextFocusRight="@+id/container"
|
|
android:src="@drawable/ic_close_white_24dp"
|
|
app:tint="@color/signal_icon_tint_primary"
|
|
android:contentDescription="@string/InviteActivity_cancel"/>
|
|
|
|
</LinearLayout>
|