summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/fragment_grid.xml
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-02-12 09:17:19 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:30 +0200
commit0e52d11ede15d0a47761dce42ebf1a8f7eb83719 (patch)
tree5ce614dc7aaa5c7251733f10dcda141baf33ae4b /src/android/app/src/main/res/layout/fragment_grid.xml
parentandroid: Replace notification icon with yuzu (diff)
downloadyuzu-0e52d11ede15d0a47761dce42ebf1a8f7eb83719.tar
yuzu-0e52d11ede15d0a47761dce42ebf1a8f7eb83719.tar.gz
yuzu-0e52d11ede15d0a47761dce42ebf1a8f7eb83719.tar.bz2
yuzu-0e52d11ede15d0a47761dce42ebf1a8f7eb83719.tar.lz
yuzu-0e52d11ede15d0a47761dce42ebf1a8f7eb83719.tar.xz
yuzu-0e52d11ede15d0a47761dce42ebf1a8f7eb83719.tar.zst
yuzu-0e52d11ede15d0a47761dce42ebf1a8f7eb83719.zip
Diffstat (limited to 'src/android/app/src/main/res/layout/fragment_grid.xml')
-rw-r--r--src/android/app/src/main/res/layout/fragment_grid.xml23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_grid.xml b/src/android/app/src/main/res/layout/fragment_grid.xml
index f5b6c2e19..01399e18d 100644
--- a/src/android/app/src/main/res/layout/fragment_grid.xml
+++ b/src/android/app/src/main/res/layout/fragment_grid.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
- android:id="@+id/refresh_grid_games"
- android:layout_width="match_parent"
+ android:id="@+id/swipe_refresh"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
@@ -22,12 +22,13 @@
android:textSize="18sp"
android:gravity="center" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/grid_games"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:listitem="@layout/card_game" />
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/grid_games"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:clipToPadding="false"
+ tools:listitem="@layout/card_game" />
</RelativeLayout>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
-</FrameLayout> \ No newline at end of file
+</FrameLayout>