Skip to content

Instantly share code, notes, and snippets.

@pratheeshrussell
Last active March 1, 2020 18:05
Show Gist options
  • Save pratheeshrussell/d040b640d7fbcf6054f528a32f6f20ca to your computer and use it in GitHub Desktop.
Save pratheeshrussell/d040b640d7fbcf6054f528a32f6f20ca to your computer and use it in GitHub Desktop.
native animated splash screen launch background file
<!-- android\app\src\main\res\drawable\launch_background.xml -->
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher" />
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment