Browse Source

Android Editor: Fix expand button black bar issue

Anish Mishra 6 months ago
parent
commit
129ffce06a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      platform/android/java/editor/src/main/res/values/themes.xml

+ 2 - 1
platform/android/java/editor/src/main/res/values/themes.xml

@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="utf-8"?>
 <resources>
 	<style name="GodotEditorTheme" parent="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen">
-		<item name ="android:windowDrawsSystemBarBackgrounds">false</item>
+		<item name="android:statusBarColor">@android:color/transparent</item>
+		<item name ="android:navigationBarColor">@android:color/transparent</item>
 	</style>
 
 	<style name="GodotEditorSplashScreenTheme" parent="Theme.SplashScreen.IconBackground">