问题 : 使用CoordinatorLayout+AppBarLayout+NestedScrollView悬浮停靠 再使用SmartSwipeRefresh下拉刷新造成滑动冲突(拉到任何位置都能刷新)
解决方案: 监听AppBarLayout 当滑动到头部位置开启刷新 其余的不刷新 abLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() { @Override public void onOffsetChanged(AppBarLayout appBarLayout, int i) { if (smartSwipeRefresh != null) { if (i == 0) { smartSwipeRefresh.enableRefresh(); //立即开启刷新 } else { smartSwipeRefresh.disableRefresh(); } } } });
版权声明:本文为cao2884388原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。