21 lines
653 B
XML
21 lines
653 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="90"
|
|
android:endColor="#6682fa"
|
|
android:startColor="#556bf1" />
|
|
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/dp_12"
|
|
android:bottomRightRadius="@dimen/dp_12"
|
|
android:topLeftRadius="@dimen/dp_12"
|
|
android:topRightRadius="@dimen/dp_12" />
|
|
|
|
<padding
|
|
android:bottom="@dimen/dp_2"
|
|
android:left="@dimen/dp_8"
|
|
android:right="@dimen/dp_8"
|
|
android:top="@dimen/dp_2" />
|
|
</shape> |