Created
August 13, 2018 12:39
-
-
Save wajahatkarim3/8c6ace47abae87a0815c8558df701f89 to your computer and use it in GitHub Desktop.
Splash Drawable
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 | |
android:drawable="@color/colorPrimary"/> | |
<item | |
android:drawable="@drawable/bg_watermark" /> | |
<item android:bottom="@dimen/_70sdp" | |
android:top="@dimen/_50sdp" | |
android:left="@dimen/_50sdp" | |
android:right="@dimen/_50sdp" | |
> | |
<rotate android:duration="500" | |
android:fromDegrees="0" | |
android:toDegrees="360" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
android:repeatCount="infinite" | |
android:startOffset="0" | |
> | |
<bitmap | |
android:gravity="center" | |
android:src="@drawable/logo_sold_text" | |
/> | |
</rotate> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment