diff options
Diffstat (limited to 'android/src')
| -rw-r--r-- | android/src/main/res/layout/confirm_no_email.xml | 50 |
1 files changed, 27 insertions, 23 deletions
diff --git a/android/src/main/res/layout/confirm_no_email.xml b/android/src/main/res/layout/confirm_no_email.xml index 7ae862302f..09e554bcf1 100644 --- a/android/src/main/res/layout/confirm_no_email.xml +++ b/android/src/main/res/layout/confirm_no_email.xml @@ -1,23 +1,27 @@ -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:padding="30dp" - android:background="@drawable/dialog_background" - android:orientation="vertical" - android:gravity="left" - android:elevation="2dp"> - <TextView android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_weight="0" - android:layout_marginBottom="12dp" - android:textColor="@color/white80" - android:textSize="16sp" - android:text="@string/confirm_no_email" /> - <Button android:id="@+id/send_button" - android:text="@string/send_anyway" - style="@style/RedButton" /> - <Button android:id="@+id/back_button" - android:layout_marginTop="16dp" - android:text="@string/back" - style="@style/BlueButton" /> -</LinearLayout> +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:scrollbars="none"> + <LinearLayout android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:padding="30dp" + android:background="@drawable/dialog_background" + android:orientation="vertical" + android:gravity="left" + android:elevation="2dp"> + <TextView android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="0" + android:layout_marginBottom="12dp" + android:textColor="@color/white80" + android:textSize="16sp" + android:text="@string/confirm_no_email" /> + <Button android:id="@+id/send_button" + android:text="@string/send_anyway" + style="@style/RedButton" /> + <Button android:id="@+id/back_button" + android:layout_marginTop="16dp" + android:text="@string/back" + style="@style/BlueButton" /> + </LinearLayout> +</ScrollView> |
