blob: 4c72dfe2e7e1dc19a927ecb71cf905fd2c9efa07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!--Replace custom/res/drawable-hdpi/ic_splash_background with background image-->
<!--Replace custom/res/drawable-xhdpi/ic_splash_background with background image-->
<!--Replace custom/res/drawable-xxxhdpi/ic_splash_background with background image-->
<!--Change gravity to best fit background image to screen-->
<item android:drawable="@drawable/ic_splash_background"
android:gravity="fill_horizontal|fill_vertical" />
<!--If a foreground image is not need remove this <item> tag-->
<!--<item> -->
<!--Replace custom/res/drawable/logo with foreground image-->
<!--Replace custom/res/drawable-ldpi/logo with foreground image-->
<!--Replace custom/res/drawable-xxxhdpi/logo with foreground image-->
<!--<bitmap
android:src="@drawable/logo"
android:gravity="center" /> -->
<!--</item>-->
</layer-list>
|