1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8"?>
- <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
- <item>
- <shape android:shape="rectangle">
- <solid android:color="#00000000" />
- </shape>
- </item>
- <item>
- <shape android:shape="rectangle">
- <corners android:radius="4dp" />
- <solid android:color="@color/x7_white" />
- <stroke
- android:width="1dp"
- android:color="#15cbb4" />
- </shape>
- </item>
- </layer-list>
|