转自:https://blog.csdn.net/vite_s/article/details/78901767
在26版本的sdk上,谷歌解决了之前存在已久的一个问题:AppBarLayout、CollapsingToolbarLayout和RecyclerView共存时,无法通过fling快速展开AppBarLayout
但是随之而来的是一个新问题,当快速上下滚动,最后回到顶部时,AppBarLayout会出现回弹(bounce)的现象
原因是内部的非touch fling还未结束导致的
目前的一个解决方法是在非touch时block掉fling事件
代码如下:
- public class TestBehavior extends AppBarLayout.Behavior {
- private static final int TYPE_FLING = 1;
- private boolean isFlinging;
- private boolean shouldBlockNestedScroll;
- public TestBehavior() {
- }
- public TestBehavior(Context context, AttributeSet attrs) {
- super(context, attrs);
- }
- @Override
- public boolean onInterceptTouchEvent(CoordinatorLayout parent, AppBarLayout child, MotionEvent ev) {
- Log.i(”TestBehavior”, “onInterceptTouchEvent:” + child.getTotalScrollRange());
- shouldBlockNestedScroll = false;
- if (isFlinging) {
- shouldBlockNestedScroll = true;
- }
- return super.onInterceptTouchEvent(parent, child, ev);
- }
- @Override
- public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dx, int dy, int[] consumed, int type) {
- //注意看ViewCompat.TYPE_TOUCH
- Log.i(”TestBehavior”, “onNestedPreScroll:” + child.getTotalScrollRange() + “ ,dx:” + dx + “ ,dy:” + dy + “ ,type:” + type);
- //返回1时,表示当前target处于非touch的滑动,
- //该bug的引起是因为appbar在滑动时,CoordinatorLayout内的实现NestedScrollingChild2接口的滑动子类还未结束其自身的fling
- //所以这里监听子类的非touch时的滑动,然后block掉滑动事件传递给AppBarLayout
- if (type == TYPE_FLING) {
- isFlinging = true;
- }
- if (!shouldBlockNestedScroll) {
- super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed, type);
- }
- }
- @Override
- public void onNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dxConsumed, int dyConsumed, int
- dxUnconsumed, int dyUnconsumed, int type) {
- Log.i(”TestBehavior”, “onNestedScroll: target:” + target.getClass() + “ ,” + child.getTotalScrollRange() + “ ,dxConsumed:”
- + dxConsumed + ” ,dyConsumed:” + dyConsumed + “ ” + “,type:” + type);
- if (!shouldBlockNestedScroll) {
- super.onNestedScroll(coordinatorLayout, child, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, type);
- }
- }
- @Override
- public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout abl, View target, int type) {
- super.onStopNestedScroll(coordinatorLayout, abl, target, type);
- isFlinging = false;
- shouldBlockNestedScroll = false;
- }
- }
public class TestBehavior extends AppBarLayout.Behavior {
private static final int TYPE_FLING = 1;
private boolean isFlinging;
private boolean shouldBlockNestedScroll;
public TestBehavior() {
}
public TestBehavior(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean onInterceptTouchEvent(CoordinatorLayout parent, AppBarLayout child, MotionEvent ev) {
Log.i("TestBehavior", "onInterceptTouchEvent:" + child.getTotalScrollRange());
shouldBlockNestedScroll = false;
if (isFlinging) {
shouldBlockNestedScroll = true;
}
return super.onInterceptTouchEvent(parent, child, ev);
}
@Override
public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dx, int dy, int[] consumed, int type) {
//注意看ViewCompat.TYPE_TOUCH
Log.i("TestBehavior", "onNestedPreScroll:" + child.getTotalScrollRange() + " ,dx:" + dx + " ,dy:" + dy + " ,type:" + type);
//返回1时,表示当前target处于非touch的滑动,
//该bug的引起是因为appbar在滑动时,CoordinatorLayout内的实现NestedScrollingChild2接口的滑动子类还未结束其自身的fling
//所以这里监听子类的非touch时的滑动,然后block掉滑动事件传递给AppBarLayout
if (type == TYPE_FLING) {
isFlinging = true;
}
if (!shouldBlockNestedScroll) {
super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed, type);
}
}
@Override
public void onNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dxConsumed, int dyConsumed, int
dxUnconsumed, int dyUnconsumed, int type) {
Log.i("TestBehavior", "onNestedScroll: target:" + target.getClass() + " ," + child.getTotalScrollRange() + " ,dxConsumed:"
+ dxConsumed + " ,dyConsumed:" + dyConsumed + " " + ",type:" + type);
if (!shouldBlockNestedScroll) {
super.onNestedScroll(coordinatorLayout, child, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, type);
}
}
@Override
public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout abl, View target, int type) {
super.onStopNestedScroll(coordinatorLayout, abl, target, type);
isFlinging = false;
shouldBlockNestedScroll = false;
}
}