调用finishRefreshing后,mIsRefreshing置位false失效
suchen2 opened this issue · 2 comments
suchen2 commented
finishRefreshing方法调用后,会走mHeader.setRefreshing(false); 动画正常结束,但是一直是下拉后的样子,不回到顶部. 在再一次下拉的时候就回去了.
jy231613 commented
解决了吗,我的也这样...
867339205 commented
在Activity中正常使用,fragment中出现了同样的问题,已解决。在CircleRefreshLayout.setUpChildAnimation中更改如下语句 mUpTopAnimator = ValueAnimator.ofFloat(mHeaderHeight,0);改为 mUpTopAnimator = ValueAnimator.ofFloat(mHeaderHeight-1,0);便可以。