Make the password configuration dialog scrollable

Fixes #722
This commit is contained in:
Alexander Bakker 2021-04-14 17:33:16 +02:00
parent 61ac83b134
commit 7d3666a5d0

View file

@ -1,8 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:paddingStart="20dp"
android:paddingBottom="10dp"
android:paddingEnd="20dp"
@ -74,3 +78,4 @@
android:layout_height="wrap_content"
android:layout_gravity="end" />
</LinearLayout>
</ScrollView>