黑圆圈显示实现

在这里插入图片描述

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <!-- solid表示远的填充色 -->
    <solid android:color="#000" />
    <!-- stroke则代表远的边框线 -->
    <stroke
        android:width="0dp"
        android:color="#FFFFFF" />
    <!-- size控制高宽 -->
    <size
        android:height="5dp"
        android:width="5dp" />
</shape>

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/xiyangyang8110/article/details/125233331
今日推荐