summaryrefslogtreecommitdiffstats
path: root/platform/android/java/app/res/values/themes.xml
blob: 3ab8401928763d956a8c37d4e7b3688b0e61195d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<resources>

	<style name="GodotAppMainTheme" parent="@android:style/Theme.Black.NoTitleBar"/>

	<style name="GodotAppSplashTheme" parent="Theme.SplashScreen">
		<!-- Set the splash screen background, animated icon, and animation
   duration. -->
		<item name="android:windowSplashScreenBackground">@mipmap/icon_background</item>

		<!-- Use windowSplashScreenAnimatedIcon to add a drawable or an animated
			 drawable. One of these is required. -->
		<item name="windowSplashScreenAnimatedIcon">@mipmap/icon_foreground</item>

		<!-- Set the theme of the Activity that directly follows your splash
		screen. This is required. -->
		<item name="postSplashScreenTheme">@style/GodotAppMainTheme</item>
	</style>
</resources>