19 lines
551 B
XML
19 lines
551 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- 内部颜色 -->
|
|
<solid
|
|
android:color="@color/sos_bg_color" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:topLeftRadius="10dp"
|
|
android:topRightRadius="10dp"
|
|
android:bottomLeftRadius="10dp"
|
|
android:bottomRightRadius="10dp" />
|
|
|
|
<gradient
|
|
android:angle="-45"
|
|
android:endColor="#4B79A1"
|
|
android:startColor="#2D465C"
|
|
android:type="linear" />
|
|
</shape> |