Last active
January 31, 2023 06:26
-
-
Save rodrigosimoesrosa/05306d4f4a01b77597e3e6a6e7613eef to your computer and use it in GitHub Desktop.
Shadow for circle drawable Android.
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" > | |
<!-- Shadow --> | |
<item> | |
<shape android:shape="oval"> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#00CCCCCC" /> | |
</shape> | |
</item> | |
<item> | |
<shape android:shape="oval"> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#10CCCCCC" /> | |
</shape> | |
</item> | |
<item> | |
<shape android:shape="oval"> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#20CCCCCC" /> | |
</shape> | |
</item> | |
<item> | |
<shape android:shape="oval"> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#30CCCCCC" /> | |
</shape> | |
</item> | |
<item> | |
<shape android:shape="oval"> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#50CCCCCC" /> | |
</shape> | |
</item> | |
<!-- Background --> | |
<item> | |
<shape | |
android:shape="oval"> | |
<solid android:color="@android:color/white"/> | |
</shape> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment