diff options
-rw-r--r-- | app/src/main/res/layout/swipeactions_picker.xml | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/app/src/main/res/layout/swipeactions_picker.xml b/app/src/main/res/layout/swipeactions_picker.xml index e473888b2..3eddb89f0 100644 --- a/app/src/main/res/layout/swipeactions_picker.xml +++ b/app/src/main/res/layout/swipeactions_picker.xml @@ -1,10 +1,16 @@ <?xml version="1.0" encoding="utf-8"?> -<androidx.gridlayout.widget.GridLayout +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:grid="http://schemas.android.com/apk/res-auto" - android:id="@+id/pickerGridLayout" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:padding="16dp" - grid:columnCount="2" - grid:alignmentMode="alignBounds" /> + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="wrap_content" + android:layout_height="wrap_content"> + + <androidx.gridlayout.widget.GridLayout + android:id="@+id/pickerGridLayout" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:padding="16dp" + app:columnCount="2" + app:alignmentMode="alignBounds" /> + +</ScrollView> |