用来记录方便后期快速找到
圆形形状
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" > <corners android:radius="1dp"> </corners> <solid android:color="@color/colorAccent"> </solid> <size android:width="2dp" android:height="2dp"> </size> </shape>
圆环形状
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="ring" android:innerRadiusRatio="3" android:thicknessRatio="9" android:useLevel="false" > <solid android:color="@color/colorAccent"> </solid> <stroke android:color="#151515" android:width="1dp" ></stroke> </shape>