画圆

来源:互联网 发布:sql union替代 join 编辑:程序博客网 时间:2024/05/17 01:14
<?xml version="1.0" encoding="utf-8"?>

<shape

    xmlns:android= "http://schemas.android.com/apk/res/android"

    android:shape= "oval"

    android:useLevel= "false" >

    <solid android:color= "@color/red" />

    <stroke

        android:width= "1dp"

        android:color= "@color/white" />

    <size android:width= "20dp"

          android:height= "20dp" />

</shape>

原创粉丝点击