Hulk Su

Results 32 comments of Hulk Su

@gaojingloudev 数据源的问题因人而异,大部分应用肯定都是存储在云端,这样可以具备数据状态动态下发的能力

@miaaad Sorry, i'm busy recently. I will fix it in next version.

@searchy2 Ok,I have understood what you said, I will solved this problem soon. And thanks for your feedback😁.

@Sonphil yeah, you can use it like that: ``` ...... //downloading or uploading call back @Override public void onDownloading(float progress) { // you don't need to use `startProgressAnimation` method horizontalProgressView.setProgress(progress);...

@Sonphil okey, i will update this project recently.

@amarildoribeiro Hi, thanks for using my library. About your question, i think you can use the progress update listener by setting `setProgressViewUpdateListener`, and you can get the progress value percent....

@amarildoribeiro My pleasure

@paihuai00 你好,的确存在问题,感谢你的使用😄,我将会在本周日之前更新一下library。如果你想要在此之前使用,可以暂时在初始化中采取如下方法: ``` circleProgressView.post(new Runnable() { @Override public void run() { circleProgressView.setGraduatedEnabled(true); } }); ```

@paihuai00 已经解决,请看二楼,问题原因是调用setGraduatedEnabled 方法时,view可能还没有layout完毕,通过View#post方法使其添加到队列尾部,保证了在layout结束以后才执行。