如何在 android drawable 中一个接一个地绘制多个形状,类似于垂直方向的 Liner 布局

How to draw multiple shapes in android drawable one after the other similar to vertical oriented Liner layout

我想绘制以下形状 - 使用 android drawable.Please 依次绘制直线和圆圈 drawable.Please 请参阅随附的屏幕截图。

您可以查看下方link,这可能对您有所帮助。

https://github.com/ernestoyaquello/vertical-stepper-form

我找到了如下所示的解决方案。 圆和线之间的差距是通过黑客来实现的。我只是用白色在圆上画了一笔,这样它看起来就像圆和线之间的间隙。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:width="150dp"
    android:height="10dp"
    android:gravity="center">
    <rotate android:fromDegrees="90">
        <shape android:shape="line">
            <stroke
                android:width="2dp"
                android:color="@color/c_green_text" />
        </shape>
    </rotate>
</item>
<item
    android:width="20dp"
    android:height="20dp"
    android:gravity="center">
    <shape android:shape="oval">
        <stroke
            android:width="3dp"
            android:color="@color/c_white" />
        <solid android:color="@color/c_green_text" />
    </shape>
</item>
</layer-list>