JLChen
2021-03-16 3617e6eecac94965554487afc50d39b0584324fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
 
    <!-- 高度40 -->
    <size
        android:height="60dp"
        android:width="60dp" />
    <!-- 圆角弧度 20 -->
    <corners android:radius="30dp" />
 
    <!-- 变化率 -->
    <gradient
        android:endColor="#eeeeee"
        android:startColor="#eeeeee" />
 
    <stroke
        android:width="1dp"
        android:color="#BABABA" />
 
</shape>