Last active
December 25, 2019 10:03
-
-
Save wajahatkarim3/5c50e095c1fe6304176e82b5f0e9ad0d to your computer and use it in GitHub Desktop.
The splash screen drawable to be set in the theme
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"> | |
<!-- The white background color as one in Amazon, YouTube, or Drive app --> | |
<item android:drawable="@android:color/white"/> | |
<!-- App logo --> | |
<item> | |
<bitmap | |
android:src="@drawable/amazon_logo" | |
android:gravity="center"> | |
</bitmap> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment