美文网首页
Android 在xml里通过shape画实心圆

Android 在xml里通过shape画实心圆

作者: 有一点小怪坏 | 来源:发表于2022-07-19 16:35 被阅读0次

    直接上代码

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="oval">
        <solid android:color="#ff0000" />
        <size
            android:width="10dp"
            android:height="10dp" />
    </shape>
    

    效果如下图


    2022719.png

    相关文章

      网友评论

          本文标题:Android 在xml里通过shape画实心圆

          本文链接:https://www.haomeiwen.com/subject/bdcsirtx.html