本文介绍了如何在图像上传期间创建类似whatsApp的CircularProgressBar?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何创建如下所示的CircularProgressBar,您可以在其中点击交叉图像来停止进度条.
How to create CircularProgressBar like below where you can stop the progressbar by taping on cross image.
推荐答案
您可以使用此库 CircleProgress .它很容易使用.这是阶段:
You can use this library CircleProgress . It is easy to use. Here is stages:
添加此gradle文件
Add this gradle file
compile 'com.github.lzyzsd:circleprogress:1.1.0@aar'
这是xml文件
<com.github.lzyzsd.circleprogress.DonutProgress
android:layout_marginLeft="50dp"
android:id="@+id/donut_progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
custom:donut_progress="30"/>
有关更多信息,请访问此处
For more information visit here
这篇关于如何在图像上传期间创建类似whatsApp的CircularProgressBar?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!