2020-06-26 11:10:54 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2020-06-26 11:10:54 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="24dp"
|
|
|
|
android:paddingEnd="24dp"
|
2020-11-10 10:20:54 -05:00
|
|
|
tools:background="@color/signal_background_dialog">
|
2020-06-26 11:10:54 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/safety_number_change_dialog__the_following_people_may_have_reinstalled_or_changed_devices" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/safety_number_change_dialog_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
2020-06-26 16:35:48 -04:00
|
|
|
android:scrollIndicators="top|bottom"
|
|
|
|
android:scrollbars="vertical"
|
2020-06-26 11:10:54 -04:00
|
|
|
tools:listitem="@layout/safety_number_change_recipient" />
|
|
|
|
|
|
|
|
</LinearLayout>
|