Fixed Scrolling issues in Swipe Actions (#7374)
This commit is contained in:
parent
13c2e1b3a1
commit
1528cde0e0
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue