21 lines
585 B
XML
21 lines
585 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="4dp"
|
|
android:bottomRightRadius="4dp"
|
|
android:topLeftRadius="4dp"
|
|
android:topRightRadius="4dp" />
|
|
|
|
<padding
|
|
android:bottom="2dp"
|
|
android:left="8dp"
|
|
android:right="8dp"
|
|
android:top="2dp" />
|
|
</shape> |