Added branding image on splashscreen (Android 12+)

This commit is contained in:
Sylvain Berfini 2021-11-15 12:00:31 +01:00
parent 5d2c1cb5d1
commit 41dde17feb
3 changed files with 9 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<style name="FullScreenTheme" parent="@style/AppTheme"> <style name="FullScreenTheme" parent="@style/AppTheme">
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item> <item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
<item name="android:windowTranslucentStatus">true</item> <item name="android:windowTranslucentStatus">true</item>

View file

@ -0,0 +1,9 @@
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<style name="AppSplashScreenTheme" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/dark_grey_color</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/vector_linphone_logo</item>
<item name="postSplashScreenTheme">@style/AppTheme</item>
<item name="android:windowSplashScreenBrandingImage">@drawable/splashscreen_branding</item>
</style>
</resources>