Skip to content

Instantly share code, notes, and snippets.

@iamnaran
Last active July 7, 2021 13:51
Show Gist options
  • Save iamnaran/8eaba68bcaab799e7d0f4c9fe7b581ab to your computer and use it in GitHub Desktop.
Save iamnaran/8eaba68bcaab799e7d0f4c9fe7b581ab to your computer and use it in GitHub Desktop.
Splash Drawable Background Android with SVG and PNG
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/white" />
</shape>
</item>
<item>
<bitmap
android:gravity="center"
android:src="@drawable/ic_your_splash_icon_png" />
</item>
</layer-list>
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:opacity="opaque">
<item android:drawable="@color/colorWhite" />
<item
android:drawable="@drawable/ic_your_splash_icon_svg"
android:gravity="center"/>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment