25 lines
728 B
XML
25 lines
728 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<gradient
|
|
android:angle="180"
|
|
android:endColor="@color/bantou_bg_color"
|
|
android:startColor="@color/bantou_bg_color"
|
|
android:type="linear"
|
|
android:useLevel="true" />
|
|
<!-- <stroke android:width="1dp" android:color="@color/line_color"/>-->
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/dp20"
|
|
android:bottomRightRadius="@dimen/dp20"
|
|
android:topLeftRadius="@dimen/dp20"
|
|
android:topRightRadius="@dimen/dp20" />
|
|
</shape>
|
|
</item>
|
|
</layer-list>
|
|
|
|
|
|
|
|
|
|
|