我正在尝试使用 xml 中的环形在 xml 中创建一个空心圆。然而,我最终得到一条似乎显示圆半径的线,从圆环的中间开始向右移动。
我要实现的形状的 xml 代码:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">
<solid android:color="@android:color/transparent"/>
<stroke
android:width="5dp"
android:color="#FFFFFF"/>
<size
android:width="75dp"
android:height="75dp"/>
</shape>
同样,问题是我从形状的中间开始得到一条清晰而明显的线,一直到我拥有的空心圆的边缘,透明度有效,但我不知道是什么导致中间的线. 任何帮助表示赞赏。