소스 검색

Android: Update exported app and editor theme

Anish Mishra 10 달 전
부모
커밋
6fd8d7b634
2개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 1
      platform/android/java/app/res/values/themes.xml
  2. 2 1
      platform/android/java/editor/src/main/res/values/themes.xml

+ 3 - 1
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

+ 2 - 1
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">