Make Safety Number Changed dialog scrollable.

This helps with smaller screens.
This commit is contained in:
Nicholas Tinsley
2023-07-13 11:49:08 -04:00
parent b0ca66cc1a
commit fae653540b

View File

@@ -1,37 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
tools:viewBindingIgnore="true"
<ScrollView 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:orientation="vertical"
android:padding="24dp">
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:importantForAccessibility="no"
app:srcCompat="@drawable/safety_number_change_banner" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="24dp"
tools:viewBindingIgnore="true">
<TextView
android:id="@+id/safety_number_learn_more_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
style="@style/Signal.Text.Headline"
android:fontFamily="sans-serif-medium"
android:textSize="20sp"
tools:text="Your safety number with Peter Parker changed"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:importantForAccessibility="no"
app:srcCompat="@drawable/safety_number_change_banner" />
<TextView
android:id="@+id/safety_number_learn_more_body"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/Signal.Text.Body"
tools:text="Your Safety Number with Peter Parker changed, likely because they reinstalled Signal or changed devices. Tap Verify to confirm the new safety number. This is optional."/>
<TextView
android:id="@+id/safety_number_learn_more_title"
style="@style/Signal.Text.Headline"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:fontFamily="sans-serif-medium"
android:textSize="20sp"
tools:text="Your safety number with Peter Parker changed" />
<TextView
android:id="@+id/safety_number_learn_more_body"
style="@style/Signal.Text.Body"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:text="Your Safety Number with Peter Parker changed, likely because they reinstalled Signal or changed devices. Tap Verify to confirm the new safety number. This is optional." />
</LinearLayout>
</LinearLayout>
</ScrollView>