26 lines
805 B
XML
26 lines
805 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- Gradient background from #c4d9d4 (top) to #f0f5fc (bottom) -->
|
|
<item android:drawable="@drawable/splash_gradient" />
|
|
|
|
<!-- House illustration — above center -->
|
|
<item
|
|
android:gravity="center_horizontal"
|
|
android:top="0dp"
|
|
android:bottom="80dp">
|
|
<bitmap
|
|
android:gravity="center"
|
|
android:src="@drawable/splash_house" />
|
|
</item>
|
|
|
|
<!-- RE-Quest logo — below center -->
|
|
<item
|
|
android:gravity="center_horizontal"
|
|
android:top="80dp"
|
|
android:bottom="0dp">
|
|
<bitmap
|
|
android:gravity="center"
|
|
android:src="@drawable/splash_logo" />
|
|
</item>
|
|
</layer-list>
|