Merge pull request #1444 from alexbakker/scroll-export-dialog

Make the export dialog scrollable
This commit is contained in:
Michael Schättgen 2024-08-02 22:56:27 +02:00 committed by GitHub
commit e79c2c174b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,8 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <ScrollView
android:layout_width="match_parent" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"
android:paddingBottom="10dp" android:paddingBottom="10dp"
android:paddingTop="10dp"> android:paddingTop="10dp">
@ -93,4 +97,5 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
app:allow_filtering="false" /> app:allow_filtering="false" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
</LinearLayout> </LinearLayout>
</ScrollView>