12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
- <!-- Bottom 3dp Shadow -->
- <item>
- <shape android:shape="rectangle">
- <solid android:color="#C7C6C5" />
- </shape>
- </item>
- <!-- White Top color -->
- <item android:bottom="2px" android:top="2px">
- <shape android:shape="rectangle">
- <solid android:color="@color/bright_grey" />
- </shape>
- </item>
- </layer-list>
|