diff options
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/drawable-night-xxxhdpi/splash_branding.png | bin | 0 -> 38940 bytes | |||
-rw-r--r-- | app/src/main/res/drawable-xxxhdpi/splash_branding.png | bin | 0 -> 31997 bytes | |||
-rw-r--r-- | app/src/main/res/drawable/splash_screen.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/values-night-v31/styles.xml | 12 | ||||
-rw-r--r-- | app/src/main/res/values-v31/styles.xml | 12 |
5 files changed, 30 insertions, 0 deletions
diff --git a/app/src/main/res/drawable-night-xxxhdpi/splash_branding.png b/app/src/main/res/drawable-night-xxxhdpi/splash_branding.png Binary files differnew file mode 100644 index 00000000..ff0c0130 --- /dev/null +++ b/app/src/main/res/drawable-night-xxxhdpi/splash_branding.png diff --git a/app/src/main/res/drawable-xxxhdpi/splash_branding.png b/app/src/main/res/drawable-xxxhdpi/splash_branding.png Binary files differnew file mode 100644 index 00000000..ff7afa74 --- /dev/null +++ b/app/src/main/res/drawable-xxxhdpi/splash_branding.png diff --git a/app/src/main/res/drawable/splash_screen.xml b/app/src/main/res/drawable/splash_screen.xml index c3ccc627..863217e5 100644 --- a/app/src/main/res/drawable/splash_screen.xml +++ b/app/src/main/res/drawable/splash_screen.xml @@ -9,4 +9,10 @@ android:gravity="center" /> </item> + <item android:bottom="100dp"> + <bitmap + android:gravity="bottom" + android:src="@drawable/splash_branding"/> + </item> + </layer-list>
\ No newline at end of file diff --git a/app/src/main/res/values-night-v31/styles.xml b/app/src/main/res/values-night-v31/styles.xml new file mode 100644 index 00000000..985844bd --- /dev/null +++ b/app/src/main/res/values-night-v31/styles.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="AppTheme.Launcher" parent="Theme.SplashScreen"> + <item name="windowSplashScreenBackground">#000000</item> + <item name="windowSplashScreenAnimatedIcon">@mipmap/ic_launcher_round</item> + <item name="android:windowSplashScreenBrandingImage">@drawable/splash_branding</item> + <item name="postSplashScreenTheme">@style/AppTheme.NoActionBarWithTransparentStatusBar</item> + <item name="android:statusBarColor">#000000</item> + <item name="android:navigationBarColor">#000000</item> + <item name="android:windowLightStatusBar">false</item> + </style> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values-v31/styles.xml b/app/src/main/res/values-v31/styles.xml new file mode 100644 index 00000000..b7ec1b10 --- /dev/null +++ b/app/src/main/res/values-v31/styles.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="AppTheme.Launcher" parent="Theme.SplashScreen"> + <item name="windowSplashScreenBackground">#FFFFFF</item> + <item name="windowSplashScreenAnimatedIcon">@mipmap/ic_launcher_round</item> + <item name="android:windowSplashScreenBrandingImage">@drawable/splash_branding</item> + <item name="postSplashScreenTheme">@style/AppTheme.NoActionBarWithTransparentStatusBar</item> + <item name="android:statusBarColor">#FFFFFF</item> + <item name="android:navigationBarColor">#FFFFFF</item> + <item name="android:windowLightStatusBar">true</item> + </style> +</resources>
\ No newline at end of file |