gpt4 book ai didi

android - 如何在 XML 中的实心圆圈内绘制小圆圈/点?

转载 作者:行者123 更新时间:2023-11-29 01:12:37 25 4
gpt4 key购买 nike

我想在圆圈内画一个小点。

enter image description here

这是我的带有描边的圆圈的 XML 代码。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke
android:width="4dp"
android:color="#444444" />
<solid android:color="#FF0000" />
</shape>

enter image description here

最佳答案

使用图层列表标签

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Large red circle -->
<item>
<shape
android:shape="oval">
<stroke
android:width="1dp"
android:color="#000000" />
<solid android:color="#FF0000" />
<size
android:width="40dp"
android:height="40dp"/>
</shape>
</item>

<!-- Small black circle -->
<item android:right="3dp"
android:left="-3dp"
android:top="3dp"
android:bottom="-3dp">
<shape android:shape="oval">
<stroke android:color="@android:color/transparent"
android:width="35dp"/>
<solid android:color="#000"/>
<size
android:width="5dp"
android:height="5dp"/>
</shape>
</item>

修改您选择的边距和尺寸

关于android - 如何在 XML 中的实心圆圈内绘制小圆圈/点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41875736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com