29 lines
673 B
XML
29 lines
673 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle" >
|
|
|
|
<gradient
|
|
android:angle="270"
|
|
android:centerColor="#fdfdfd"
|
|
android:endColor="#d3dfe8"
|
|
android:startColor="#e8eef4" />
|
|
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="#b7ccdd" />
|
|
|
|
<padding
|
|
android:bottom="6dp"
|
|
android:left="6dp"
|
|
android:right="6dp"
|
|
android:top="6dp" />
|
|
|
|
<margin
|
|
android:bottom="15dp"
|
|
android:left="15dp"
|
|
android:right="15dp"
|
|
android:top="15dp" />
|
|
|
|
<corners android:radius="4dp" />
|
|
|
|
</shape> |