shape_rect.xml 562 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 指定了形状内部的填充颜色 -->
    <solid android:color="#f2f1f6" />

    <!-- 指定了形状边线的粗细与颜色 -->
    <stroke
        android:width="1dp"
        android:color="@color/colorPrimary" />

    <!-- 指定了形状四个圆角的半径 -->
    <corners
        android:bottomLeftRadius="0sp"
        android:bottomRightRadius="0sp"
        android:topLeftRadius="0sp"
        android:topRightRadius="0sp" />
</shape>