xmlns:androi...">
美文网首页
Android 画图-圆圈(红、绿、黄)

Android 画图-圆圈(红、绿、黄)

作者: amibitionLin | 来源:发表于2022-06-30 17:06 被阅读0次

画红圈

<?xml version="1.0" encoding="utf-8"?>

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

    android:shape="oval"

    android:useLevel="false">

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

        android:width="1dp"

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

        android:width="20dp"

        android:height="20dp" />

</shape>


画黄圈

<?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/yellow" />

        android:width="1dp"

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

        android:width="20dp"

        android:height="20dp" />

</shape>


画绿圈

<?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/green" />

        android:width="1dp"

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

        android:width="20dp"

        android:height="20dp" />

</shape>

相关文章

  • Android 画图-圆圈(红、绿、黄)

    画红圈 xmlns:androi...

  • 红·黄·绿

    浮生暂歇独倚楼驻下脚步,仰望天空红灯,停留,往来未休久疏问候虚漂流瞄下手表,渴望相逢黄灯,等待,佳音静候琴瑟和鸣弹...

  • 绿、黄、红

    大家好,今天是我们训练营开营第7天,现在我发送热腾腾的拆页给大家,敬请查收! 选自《好好说话》 一个正常人的情绪应...

  • 绿黄红

    现在人们最敏感的和需要的话题就是手机刷码了。 封管第三天了。临河看水,春光明媚,在自己的屋里也是可以滋润的。 晚上...

  • 写图

    晴日照丹枫, 秋山绿映红。 何当涉远足, 醉意画图中。

  • 五绝/闲来

    雨过山头绿, 四时楼顶红。 闲来村口立, 评点画图风。

  • 日常12色彩观察作业

    黄—红系列 红—蓝系列 蓝—绿系列

  • 嘎姆飞过红又绿——词:南溪

    嘎姆飞过红又绿——词:南溪 嘎姆飞过红又绿耶…… 嘎姆飞过绿又黄也…… 嘎姆飞过红又绿耶…… 嘎姆飞过黄又红也……...

  • 2017-10-24

    绿松石蓝 粉绿 焦糖绿 国美黄 橄榄棕 牙黄灰 月灰 米陀 釉里红 红灰 高粱红 浅灰蓝 拿坡里黄 珍珠白

  • 三原色调色摘自百度

    三原色:红、黄、蓝 红 黄=橙 黄 蓝=绿 蓝 红=紫 以上原色色像混合所得的橙、绿、紫既是我们所说的间色。 复色...

网友评论

      本文标题:Android 画图-圆圈(红、绿、黄)

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