27 lines
681 B
XML
27 lines
681 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle" >
|
|
|
|
<padding
|
|
android:left="10dp"
|
|
android:top="10dp"
|
|
android:right="10dp"
|
|
android:bottom="10dp" />
|
|
|
|
<gradient
|
|
android:angle="90"
|
|
android:endColor="#7f000000"
|
|
android:startColor="#7f000000" />
|
|
|
|
<corners
|
|
android:bottomLeftRadius="12dp"
|
|
android:bottomRightRadius="12dp"
|
|
android:topLeftRadius="12dp"
|
|
android:topRightRadius="12dp" />
|
|
|
|
<stroke
|
|
android:width="4dip"
|
|
android:color="#ff7f7f7f" />
|
|
|
|
</shape>
|