diff options
author | Anish Mishra <mishragames@gmail.com> | 2024-11-06 16:35:24 +0530 |
---|---|---|
committer | Anish Mishra <mishragames@gmail.com> | 2024-11-08 22:37:52 +0530 |
commit | 6fd8d7b634cacfa3bb922186db4255f7208c1dde (patch) | |
tree | ac2279ff34527adbf2226b4c0914452a91b98716 /platform/android/java | |
parent | e65a23762b36b564eb94672031f37fdadba72333 (diff) | |
download | redot-engine-6fd8d7b634cacfa3bb922186db4255f7208c1dde.tar.gz |
Android: Update exported app and editor theme
Diffstat (limited to 'platform/android/java')
-rw-r--r-- | platform/android/java/app/res/values/themes.xml | 4 | ||||
-rw-r--r-- | platform/android/java/editor/src/main/res/values/themes.xml | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/platform/android/java/app/res/values/themes.xml b/platform/android/java/app/res/values/themes.xml index 3ab8401928..3c86e54df5 100644 --- a/platform/android/java/app/res/values/themes.xml +++ b/platform/android/java/app/res/values/themes.xml @@ -1,7 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <style name="GodotAppMainTheme" parent="@android:style/Theme.Black.NoTitleBar"/> + <style name="GodotAppMainTheme" parent="@android:style/Theme.DeviceDefault.NoActionBar"> + <item name ="android:windowDrawsSystemBarBackgrounds">false</item> + </style> <style name="GodotAppSplashTheme" parent="Theme.SplashScreen"> <!-- Set the splash screen background, animated icon, and animation diff --git a/platform/android/java/editor/src/main/res/values/themes.xml b/platform/android/java/editor/src/main/res/values/themes.xml index 2b352247db..8de2c6e288 100644 --- a/platform/android/java/editor/src/main/res/values/themes.xml +++ b/platform/android/java/editor/src/main/res/values/themes.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <style name="GodotEditorTheme" parent="@android:style/Theme.Black.NoTitleBar.Fullscreen"> + <style name="GodotEditorTheme" parent="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen"> + <item name ="android:windowDrawsSystemBarBackgrounds">false</item> </style> <style name="GodotEditorSplashScreenTheme" parent="Theme.SplashScreen.IconBackground"> |