mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-10 04:37:25 +01:00
Added a app loading splash Screen (#2185)
* Added a app loading splash Screen. Just a theme that plays on start up before loading the actual app theme * Added a app loading splash Screen. Just a theme that plays on start up before loading the actual app theme * Update splash_background.xml
This commit is contained in:
parent
4bc5f1401f
commit
141b7ac554
@ -26,7 +26,8 @@
|
||||
android:theme="@style/Theme.Tachiyomi">
|
||||
<activity
|
||||
android:name=".ui.main.MainActivity"
|
||||
android:launchMode="singleTask">
|
||||
android:launchMode="singleTask"
|
||||
android:theme="@style/SplashScreenBackground">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
|
8
app/src/main/res/drawable/splash_background.xml
Normal file
8
app/src/main/res/drawable/splash_background.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@color/colorSplash"/>
|
||||
<item
|
||||
android:gravity="center"
|
||||
android:drawable="@mipmap/ic_launcher_round">
|
||||
</item>
|
||||
</layer-list>
|
@ -84,4 +84,6 @@
|
||||
|
||||
<color name="md_teal_500">#009688</color>
|
||||
|
||||
<color name="colorSplash">#455A64</color>
|
||||
|
||||
</resources>
|
||||
|
@ -1,6 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
|
||||
<!--=============-->
|
||||
<!--Splash Screen-->
|
||||
<!--=============-->
|
||||
|
||||
<style name="SplashScreenBackground" parent="Theme.Tachiyomi">
|
||||
<item name="android:windowBackground">@drawable/splash_background</item>
|
||||
</style>
|
||||
|
||||
|
||||
<!--========-->
|
||||
<!--Toolbars-->
|
||||
<!--========-->
|
||||
|
Loading…
Reference in New Issue
Block a user