blob: 4015c3cdee00c549b2efab85cd1db651780dffcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
<item name="postSplashScreenTheme">@style/AppTheme</item>
<item name="windowSplashScreenAnimationDuration">300</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/icon_android</item>
<item name="windowSplashScreenBackground">@color/darkBlue</item>
</style>
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<item name="android:windowBackground">@color/darkBlue</item>
</style>
</resources>
|