-
-
Save wei-spring/4dbcdaa228a2d88eead745b0346cd2ca to your computer and use it in GitHub Desktop.
Android shadow drawable xml.
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" > | |
<!-- Drop Shadow Stack --> | |
<item> | |
<shape> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#00CCCCCC" /> | |
<corners android:radius="3dp" /> | |
</shape> | |
</item> | |
<item> | |
<shape> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#10CCCCCC" /> | |
<corners android:radius="3dp" /> | |
</shape> | |
</item> | |
<item> | |
<shape> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#20CCCCCC" /> | |
<corners android:radius="3dp" /> | |
</shape> | |
</item> | |
<item> | |
<shape> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#30CCCCCC" /> | |
<corners android:radius="3dp" /> | |
</shape> | |
</item> | |
<item> | |
<shape> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="#50CCCCCC" /> | |
<corners android:radius="3dp" /> | |
</shape> | |
</item> | |
<!-- Background --> | |
<item> | |
<shape> | |
<solid android:color="@android:color/white" /> | |
<corners android:radius="3dp" /> | |
</shape> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment