WuXiaolong / PullLoadMoreRecyclerView

实现RecyclerView下拉刷新和上拉加载更多以及RecyclerView线性、网格、瀑布流效果演示
1.39k stars 371 forks source link

下拉分页后,有时候向下滑动,出现下拉刷新 #48

Open fenggit opened 7 years ago

fenggit commented 7 years ago

下拉分页后,有时候向下滑动,出现下拉刷新;应该在顶部才出现下拉刷新才对

lgj1020 commented 7 years ago

对,这里有问题,同求修改?!

fenggit commented 7 years ago

@lgj1020 在PullLoadMoreRecyclerView#addOnScrollListener中添加 //解决下拉刷新冲突 int topRowVerticalPosition = (recyclerView == null || recyclerView.getChildCount() == 0) ? 0 : recyclerView.getChildAt(0).getTop(); mSwipeRefreshLayout.setEnabled(topRowVerticalPosition >= 0);