diff options
author | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2021-02-18 01:54:35 -0800 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2021-02-18 03:20:49 -0800 |
commit | 526b99ee369c481496a026b0b9c5b4dddfd435bc (patch) | |
tree | 6e515a22e2638a820edb2b6412824312b69b9b10 /platform/android/java/app | |
parent | bdf3c578ff1d382ccf0c6bd2cde1abf5393fda53 (diff) |
Disable engine splash logic on Android; this is now handled by the Android theme api.
In addition, add support for scaling and applying filter to the splash screen on Android.
One limitation of the api being used is that the splash screen aspect ratio is not maintained when it's scaled up.
Diffstat (limited to 'platform/android/java/app')
-rw-r--r-- | platform/android/java/app/res/drawable/splash_drawable.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/java/app/res/drawable/splash_drawable.xml b/platform/android/java/app/res/drawable/splash_drawable.xml index 2794a40817..30627b998c 100644 --- a/platform/android/java/app/res/drawable/splash_drawable.xml +++ b/platform/android/java/app/res/drawable/splash_drawable.xml @@ -6,7 +6,7 @@ <item> <bitmap android:gravity="center" + android:filter="false" android:src="@drawable/splash" /> </item> - </layer-list> |