diff options
| author | Charles Lombardo <clombardo169@gmail.com> | 2022-03-28 09:42:43 -0400 |
|---|---|---|
| committer | Charles Lombardo <clombardo169@gmail.com> | 2022-03-28 09:58:01 -0400 |
| commit | 8a0c6816ddc778f37483e8f967d338ab53ae06b5 (patch) | |
| tree | 278ac4eafc1b3d0b8562e2a1238e21f333111a76 /Source/Android | |
| parent | c08a23b374b852f6a7db8a31996ab4ce52f08805 (diff) | |
Android: Fix games list padding
Use clipToPadding="false" to prevent top white bar when scrolling
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/app/src/main/res/layout/fragment_grid.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/res/layout/fragment_grid.xml b/Source/Android/app/src/main/res/layout/fragment_grid.xml index 976839ff1f..5c44cbcb5e 100644 --- a/Source/Android/app/src/main/res/layout/fragment_grid.xml +++ b/Source/Android/app/src/main/res/layout/fragment_grid.xml @@ -16,7 +16,9 @@ android:layout_width="match_parent" android:layout_height="match_parent" tools:listitem="@layout/card_game" - android:paddingTop="8dp"/> + android:clipToPadding="false" + android:paddingTop="8dp" + android:paddingBottom="8dp"/> </androidx.swiperefreshlayout.widget.SwipeRefreshLayout> |
