简体   繁体   English

Android进度圈浪潮

[英]Android progress circle waves

I'm trying to make a progress circle for android. 我正在尝试为android建立进度圈。 I found this in the Data Usage in Miui v5. 我在Miui v5中的“数据使用情况”中发现了这一点。 In the center, the line is not straight but it is like a wave. 在中心,该线不是笔直的,而是像波浪。

Can someone help me to make it? 有人可以帮我做到吗?

I think this is what you might looking for. 我认为这是您可能想要的。 The bottom left progressbar. 左下方的进度栏。 Take a look here 在这里看看

Also you can take a look here for the wave view you are looking for. 您也可以在此处查看所需的波形图。

The implementations are: 实现是:

CircularProgress: 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: 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: 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"/>

Hope that helps!!! 希望有帮助!!!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM