23 lines
952 B
XML
23 lines
952 B
XML
|
<?xml version="1.0" encoding="utf-8" ?>
|
|||
|
<resources>
|
|||
|
<!--
|
|||
|
Base application theme for API 21+. This theme completely replaces
|
|||
|
MyTheme from BOTH res/values/styles.xml on API 21+ devices.
|
|||
|
-->
|
|||
|
<style name="MyTheme" parent="MyTheme.Base">
|
|||
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|||
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|||
|
</style>
|
|||
|
|
|||
|
<style name="MyThemeDark" parent="MyThemeDark.Base">
|
|||
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|||
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|||
|
</style>
|
|||
|
|
|||
|
|
|||
|
<style name="SplashTheme" parent="SplashTheme.Base">
|
|||
|
<item name="android:windowTranslucentNavigation">true</item>
|
|||
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|||
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|||
|
</style>
|
|||
|
</resources>
|