-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Properly add themes.xml file left behind previously
- Loading branch information
1 parent
f31e6fa
commit 834936b
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<style name="Theme.App" parent="@android:style/Theme.Material.Light.NoActionBar"> | ||
<item name="android:navigationBarColor">@android:color/transparent</item> | ||
<item name="android:statusBarColor">@android:color/transparent</item> | ||
<item name="android:windowLightStatusBar">false</item> | ||
</style> | ||
<style name="Theme.App.Starting" parent="Theme.SplashScreen.IconBackground"> | ||
<item name="windowSplashScreenBackground">@color/splash_screen_background</item> | ||
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item> | ||
<item name="windowSplashScreenIconBackgroundColor">@color/ic_launcher_background</item> | ||
<item name="postSplashScreenTheme">@style/Theme.App</item> | ||
</style> | ||
</resources> |