make restore backup dialog scrollable

fixes #267
This commit is contained in:
Daniel Gultsch 2024-04-22 13:02:34 +02:00
parent 3892015310
commit 19e7c7ff19
No known key found for this signature in database
GPG key ID: F43D18AD2A0982C2

View file

@ -2,9 +2,13 @@
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="?dialogPreferredPadding">
@ -45,4 +49,5 @@
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
</ScrollView>
</layout>