summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-05-14 01:08:56 +0200
committerbunnei <bunneidev@gmail.com>2023-06-03 09:06:02 +0200
commita0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b (patch)
tree34c6d95a81d9c205223f72d3d8cba0ef3bd696fc
parentandroid: Shortcut to settings activity on reselection (diff)
downloadyuzu-a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b.tar
yuzu-a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b.tar.gz
yuzu-a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b.tar.bz2
yuzu-a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b.tar.lz
yuzu-a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b.tar.xz
yuzu-a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b.tar.zst
yuzu-a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b.zip
-rw-r--r--src/android/app/src/main/res/layout-w600dp/activity_main.xml3
-rw-r--r--src/android/app/src/main/res/layout/activity_main.xml3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/android/app/src/main/res/layout-w600dp/activity_main.xml b/src/android/app/src/main/res/layout-w600dp/activity_main.xml
index 8a4f46bef..74bee872e 100644
--- a/src/android/app/src/main/res/layout-w600dp/activity_main.xml
+++ b/src/android/app/src/main/res/layout-w600dp/activity_main.xml
@@ -5,7 +5,8 @@
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/coordinator_main"
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="match_parent"
+ android:background="?attr/colorSurface">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_container"
diff --git a/src/android/app/src/main/res/layout/activity_main.xml b/src/android/app/src/main/res/layout/activity_main.xml
index 7db1a409e..ad426457f 100644
--- a/src/android/app/src/main/res/layout/activity_main.xml
+++ b/src/android/app/src/main/res/layout/activity_main.xml
@@ -5,7 +5,8 @@
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/coordinator_main"
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="match_parent"
+ android:background="?attr/colorSurface">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_container"