diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-05-14 01:08:56 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:06:02 +0200 |
commit | a0a0703f305b2d6cb7c04e0f02c3c9c769d75d1b (patch) | |
tree | 34c6d95a81d9c205223f72d3d8cba0ef3bd696fc | |
parent | android: Shortcut to settings activity on reselection (diff) | |
download | yuzu-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.xml | 3 | ||||
-rw-r--r-- | src/android/app/src/main/res/layout/activity_main.xml | 3 |
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" |