sf_brand.setOnChildScrollUpCallback(new SwipeRefreshLayout.OnChildScrollUpCallback() {
@Override
public boolean canChildScrollUp(SwipeRefreshLayout parent, @Nullable View child) {
if (rv_brand == null) {
return false;
}
LinearLayoutManager linearLayoutManager = (LinearLayoutManager) rv_brand.getLayoutManager();
return linearLayoutManager.findFirstCompletelyVisibleItemPosition() != 0;
}
});
说明:
private SwipeRefreshLayout sf_brand;
private RecyclerView rv_brand;
对应一下两个控件,这种方法亲测可用完美解决滑动冲突的问题。
还有一种方法,我测试过有一点小问题:
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
//解决SwipeRefreshLayout与RecyclerView滑动冲突 不是很完美 先将就一下吧 10.9
/*recyclerView.getChildAt(0).getTop()=0时,不管是不是第一个item,都会触发下拉刷新*/
int topRowVerticalPosition =(recyclerView == null || recyclerView.getChildCount() == 0) ? 0 : recyclerView.getChildAt(0).getTop();
sf_brand.setEnabled(topRowVerticalPosition >= 0);
}
这个也是可以解决问题的,但是会有一点小bug,当recyclerView.getChildAt(0).getTop()=0时,不管是不是第一个item,都会触发下拉刷新。