2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<shape>
|
|
|
|
<padding
|
|
|
|
android:bottom="5dp"
|
|
|
|
android:left="8dp"
|
|
|
|
android:right="8dp"
|
|
|
|
android:top="8dp" />
|
|
|
|
<solid android:color="@android:color/transparent" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<shape>
|
|
|
|
<padding
|
|
|
|
android:bottom="1dp"
|
|
|
|
android:left="0dp"
|
|
|
|
android:right="0dp"
|
|
|
|
android:top="0dp" />
|
|
|
|
<solid android:color="#55d4d4d4" />
|
2018-09-23 15:34:43 +05:30
|
|
|
<corners android:radius="6dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<shape>
|
|
|
|
<padding
|
|
|
|
android:bottom="1dp"
|
|
|
|
android:left="0dp"
|
|
|
|
android:right="0dp"
|
|
|
|
android:top="0dp" />
|
|
|
|
<solid android:color="#55dddddd" />
|
2018-09-23 15:34:43 +05:30
|
|
|
<corners android:radius="6dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<shape>
|
|
|
|
<solid android:color="@android:color/white" />
|
2018-09-23 15:34:43 +05:30
|
|
|
<corners android:radius="6dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
</layer-list>
|