13 lines
387 B
XML
13 lines
387 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
|
|
<stroke android:color="#eeeeee" android:width="1dp"/>
|
|
<corners android:radius="8dp"/>
|
|
<gradient
|
|
android:type="linear"
|
|
android:angle="270"
|
|
android:startColor="#A8F0C3"
|
|
android:endColor="#FFFFFF" />
|
|
</shape>
|