summaryrefslogtreecommitdiff
path: root/app/src/custom/res/drawable/splash_page.xml
blob: 57caa83423698e77b2b9e2f96e186b894fb03e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">

 <!--Rename ic_splash_background to background image name-->
 <!--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>
  <!--Rename mask to foreground image name-->
  <bitmap
      android:src="@drawable/logo"
      android:gravity="center" />
 </item>

</layer-list>