我正在尝试为Android制作进度圈。我在Miui v5的数据使用中找到了这个。 在中心,线条不是直的,而是像波浪一样。
有人可以帮助我吗?
答案 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"/>
希望有所帮助!!!