Last active
July 7, 2021 13:51
-
-
Save iamnaran/8eaba68bcaab799e7d0f4c9fe7b581ab to your computer and use it in GitHub Desktop.
Splash Drawable Background Android with SVG and PNG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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