我怎样才能在 android 中实现这一点。(图中圈出)

How can i achieve this in android.(Encircled in the image)

我想在我的应用程序中显示订单状态。我陷入了这个想法,比如如何显示订单状态。谁能指导我解决这个问题。

如果您正在寻找看起来像圆形指示器的视图:

<View
    android:layout_width="5dp"
    android:layout_height="5dp"
    android:background="@drawable/indic" />

drawable/inidic.xml:

<shape
    xmlns:android="..."
    android:shape="oval">
    <solid android:color="COLOR" />
</shape>