Created
August 20, 2016 15:43
-
-
Save MrOnyszko/4a50ed5aa6d58784e9ff8ec80f497809 to your computer and use it in GitHub Desktop.
This file contains 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:gravity="center"> | |
<shape android:shape="oval"> | |
<gradient | |
android:centerColor="#80000000" | |
android:endColor="#00000000" | |
android:gradientRadius="90" | |
android:startColor="#ff000000" | |
android:type="radial" /> | |
<size | |
android:width="100dp" | |
android:height="100dp" /> | |
</shape> | |
</item> | |
<item android:gravity="center"> | |
<shape android:shape="oval"> | |
<solid android:color="#fff" /> | |
<size | |
android:width="80dp" | |
android:height="80dp" /> | |
</shape> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment