我怎么能在android中实现这一点。(图片中包围)

时间:2015-02-28 07:52:17

标签: android progress-bar

enter image description here 我想在我的应用中显示订单状态。我被困在这个想法如何显示订单状态。任何人都可以指导我完成这件事。

1 个答案:

答案 0 :(得分:0)

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

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

抽拉/ inidic.xml:

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