12 lines
350 B
XML
12 lines
350 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<!-- 高度30 -->
|
|
<size android:height="16dp"/>
|
|
<!-- 圆角弧度 15 -->
|
|
<corners android:radius="16dp"/>
|
|
<!-- 变化率 -->
|
|
<gradient
|
|
android:endColor="#9FDDC3"
|
|
android:startColor="#9FDDC3" />
|
|
</shape> |