diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/drawable/footer_text_drawable.xml | 2 | ||||
-rw-r--r-- | app/src/normal/res/drawable/splash_branding.xml | 3 | ||||
-rw-r--r-- | app/src/normal/res/drawable/splash_icon.xml | 14 | ||||
-rw-r--r-- | app/src/normal/res/values-v31/themes.xml | 8 |
4 files changed, 27 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/footer_text_drawable.xml b/app/src/main/res/drawable/footer_text_drawable.xml index 801746df..e3ec5005 100644 --- a/app/src/main/res/drawable/footer_text_drawable.xml +++ b/app/src/main/res/drawable/footer_text_drawable.xml @@ -13,6 +13,8 @@ android:gravity="center" android:top="@dimen/footer_text_padding" android:bottom="@dimen/footer_text_padding" + android:left="20dp" + android:right="20dp" > <bitmap android:src="@drawable/leap_footer_en"/> </item> diff --git a/app/src/normal/res/drawable/splash_branding.xml b/app/src/normal/res/drawable/splash_branding.xml new file mode 100644 index 00000000..8c4ee21c --- /dev/null +++ b/app/src/normal/res/drawable/splash_branding.xml @@ -0,0 +1,3 @@ +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/footer_text_drawable" /> +</layer-list>
\ No newline at end of file diff --git a/app/src/normal/res/drawable/splash_icon.xml b/app/src/normal/res/drawable/splash_icon.xml new file mode 100644 index 00000000..f882d322 --- /dev/null +++ b/app/src/normal/res/drawable/splash_icon.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/rotate_progress_image" + android:height="198dp" + android:width="198dp" + android:gravity="fill"/> + <item + android:gravity="center" + android:height="52.75dp" + android:width="80dp" + > + <bitmap android:src="@drawable/logo"/> + </item> +</layer-list>
\ No newline at end of file diff --git a/app/src/normal/res/values-v31/themes.xml b/app/src/normal/res/values-v31/themes.xml new file mode 100644 index 00000000..7ea17424 --- /dev/null +++ b/app/src/normal/res/values-v31/themes.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar"> + <item name="android:windowSplashScreenBackground">@color/white</item> + <item name="android:windowSplashScreenAnimatedIcon">@drawable/splash_icon</item> + <item name="android:windowSplashScreenBrandingImage">@drawable/splash_branding</item> + </style> +</resources>
\ No newline at end of file |