diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:28:01 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:28:01 -0600 |
commit | 5455eb1f34384a4931d3599f38cb6b4c859f8f70 (patch) | |
tree | f98e6dd2f346e89af1f7996b4eeb634f39993b85 | |
parent | 8fd672cd87e06664a5a006e5c5782ff929d2f1f0 (diff) | |
parent | 6fd8d7b634cacfa3bb922186db4255f7208c1dde (diff) | |
download | redot-engine-5455eb1f34384a4931d3599f38cb6b4c859f8f70.tar.gz |
Merge pull request #98890 from syntaxerror247/android-dialog-theme-update
Android: Update exported app and editor theme
-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"> |