Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/android/java/app/res/values/themes.xml
10286 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<resources>
3
<!-- GodotAppMainTheme is auto-generated during export. Manual changes will be overwritten.
4
To add custom attributes, use the "gradle_build/custom_theme_attributes" Android export option. -->
5
<style name="GodotAppMainTheme" parent="@android:style/Theme.DeviceDefault.NoActionBar">
6
<item name="android:windowSwipeToDismiss">false</item>
7
<item name="android:windowIsTranslucent">false</item>
8
</style>
9
10
<!-- GodotAppSplashTheme is auto-generated during export. Manual changes will be overwritten.
11
To add custom attributes, use the "gradle_build/custom_theme_attributes" Android export option. -->
12
<style name="GodotAppSplashTheme" parent="Theme.SplashScreen">
13
<item name="android:windowSplashScreenBackground">@mipmap/icon_background</item>
14
<item name="windowSplashScreenAnimatedIcon">@mipmap/icon_foreground</item>
15
<item name="postSplashScreenTheme">@style/GodotAppMainTheme</item>
16
<item name="android:windowIsTranslucent">false</item>
17
</style>
18
</resources>
19
20