shape

来源:互联网 发布:淘宝服装代理 编辑:程序博客网 时间:2024/05/21 19:33
<shape xmlns:android="http://schemas.android.com/apk/res/android" >


    <!-- 实心的 -->
    <solid android:color="@color/white" />
    <!-- 边线 -->
    <stroke
        android:width="2dp"
        android:color="@color/blue" />
    <!-- 虚线android:dashWidth="3dp" android:dashGap="2dp" -->
    <padding
        android:bottom="2dp"
        android:left="2dp"
        android:right="2dp"
        android:top="2dp" />
    <!-- 圆角 -->
    <corners android:radius="6dp" />


</shape>
0 0