526b99ee36
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.
12 lines
303 B
XML
12 lines
303 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:drawable="@drawable/splash_bg_color" />
|
|
|
|
<item>
|
|
<bitmap
|
|
android:gravity="center"
|
|
android:filter="false"
|
|
android:src="@drawable/splash" />
|
|
</item>
|
|
</layer-list>
|