Android进度圈波

时间:2014-12-20 12:28:17

标签: android graphics draw geometry progress

我正在尝试为Android制作进度圈。我在Miui v5的数据使用中找到了这个。 在中心,线条不是直的,而是像波浪一样。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:3)

我认为这是你可能想要的。左下方的进度条。看看here

另外,您可以查看here来查找您正在寻找的波形视图。

实施是:

<强> CircularProgress:

<com.github.lzyzsd.circleprogress.CircleProgress
        android:id="@+id/circle_progress"
        android:layout_marginLeft="50dp"
        android:layout_width="100dp"
        android:layout_height="100dp"
        custom:circle_progress="20"/>

<强> CircleProgress:

<com.github.lzyzsd.circleprogress.CircleProgress
        android:id="@+id/circle_progress"
        android:layout_marginLeft="50dp"
        android:layout_width="100dp"
        android:layout_height="100dp"
        custom:circle_progress="20"/>

<强> ArcProgress:

<com.github.lzyzsd.circleprogress.ArcProgress
        android:id="@+id/arc_progress"
        android:background="#214193"
        android:layout_marginLeft="50dp"
        android:layout_width="100dp"
        android:layout_height="100dp"
        custom:arc_progress="55"
        custom:arc_bottom_text="MEMORY"/>

希望有所帮助!!!