19 lines
475 B
XML
19 lines
475 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle" >
|
|
|
|
<!-- 高度40 -->
|
|
<size android:height="32dp" android:width="32dp"/>
|
|
<!-- 圆角弧度 20 -->
|
|
<corners android:radius="16dp"/>
|
|
|
|
|
|
<!-- 变化率 -->
|
|
<gradient
|
|
android:endColor="#ffffff"
|
|
android:startColor="#ffffff" />
|
|
|
|
<stroke android:width="1dp"
|
|
android:color="@color/gray"/>
|
|
|
|
</shape> |