17 lines
495 B
XML
17 lines
495 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:topLeftRadius="@dimen/dp_8"
|
|
android:topRightRadius="@dimen/dp_8"
|
|
android:bottomLeftRadius="@dimen/dp_8"
|
|
android:bottomRightRadius="@dimen/dp_8" />
|
|
|
|
<gradient
|
|
android:angle="315"
|
|
android:startColor="#371453"
|
|
android:endColor="#623fa2"
|
|
android:type="linear"/>
|
|
</shape> |