Wrap add_money layout in ScrollView.

This commit is contained in:
Alex Hart 2021-04-07 14:00:22 -03:00
parent 7b3aa43217
commit df948179d8

View file

@ -1,10 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:fillViewport="true"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar <androidx.appcompat.widget.Toolbar
android:id="@+id/payments_add_money_toolbar" android:id="@+id/payments_add_money_toolbar"
android:layout_width="match_parent" android:layout_width="match_parent"
@ -84,3 +89,4 @@
app:layout_constraintTop_toBottomOf="@+id/payments_add_money_qr_border" /> app:layout_constraintTop_toBottomOf="@+id/payments_add_money_qr_border" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>