Android环形可绘制对象的中心线向下

时间:2019-06-05 16:13:55

标签: android drawable

我正在尝试绘制一个简单的灰色圆环,但是由于某种原因,它的中心向下有一条线,我似乎无法弄清楚为什么。

预览:

ePreview

代码:

<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="2dp"
        android:color="@color/gray" />
</shape>

我使用了这个问题的代码: Transparent circle with border

1 个答案:

答案 0 :(得分:0)

如果我使用android:shape="oval"而不是android:shape="ring",这似乎就消失了。