美文网首页
XML的画一个圆

XML的画一个圆

作者: hai_phon | 来源:发表于2018-11-28 14:15 被阅读0次
    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="ring"
        android:useLevel="false"
        android:innerRadius="0dp">
        <solid
            android:color="#5FC4FD"
            ></solid>
        <size android:height="200dp"
            android:width="200dp"></size>
    </shape>
    
    

    效果:

    image.png
    需要注意的是可能其中的<size>会不生效,如果你这个Drawable用在了某些控件,这个控件还用画笔设置了宽高之类的。

    相关文章

      网友评论

          本文标题:XML的画一个圆

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