summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMudit Choudhary <70972592+Mudit-pip@users.noreply.github.com>2024-09-03 01:42:26 +0530
committerGitHub <noreply@github.com>2024-09-02 22:12:26 +0200
commit1528cde0e012fb7a818fdc50d76981c137b64ca1 (patch)
tree4d731b5a4bfd41eec6fe964aa65238b39a56c076
parent13c2e1b3a1a525bdee75c2f1725431db9d2d2207 (diff)
downloadAntennaPod-1528cde0e012fb7a818fdc50d76981c137b64ca1.zip
Fixed Scrolling issues in Swipe Actions (#7374)
-rw-r--r--app/src/main/res/layout/swipeactions_picker.xml22
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>