美文网首页
NestedScrollingParent接口的使用

NestedScrollingParent接口的使用

作者: 长风一号 | 来源:发表于2019-02-28 21:07 被阅读0次

    目录
    1.事件分发介绍
    2.Down、up事件的分发过程
    3.onTouchListener、onClickListener调用时机
    4.事件拦截应用
    5.NestedScrollingParent
    6.Behavior的使用
    7.NestedScrollingChild接口来源
    在上小节中我们实现了dy<100时View移动,dy>100时ViewGroup移动,那如果我再加点条件呢?
    |dy|<10,View获取Move
    |dy|<30,ViewGroup获取Move
    |dy|>30,View获取Move
    之前的方法能实现么?


    我们看下之前的分析图,如果ViewGroup1拦截掉move事件后,ViewGroup2的dispatchTouchEvent都不会调用,所以我们不能再次获取move事件,那如果ViewGroup2通过requestDisallowInterceptTouchEvent可以实现么?

    ViewGroup1拦截到move时间后,mFirstTouchTarget == null,所以其设置的标志位
    FLAG_DISALLOW_INTERCEPT是起不到作用的。
    既然这样,我要实现上述功能,我应该怎么做的?
    下面介绍下NestedScrollingParent,NestedScrollingChild接口的实现原理。
    接口类
    NestedScrollingParent(最新:NestedScrollingParent2)
    NestedScrollingChild(最新:NestedScrollingChild2)
    帮助类
    NestedScrollingParentHelper
    NestedScrollingChildHelper


    接口类定义了一系列方法,有函数名可以看出,child方法负责分发事件,parent接收到后消费。帮助类是具体的实现逻辑,上面四个类一般是一起使用的。
    使用情况是这样的:
    ViewGroupLayout exends NestedScrollingParent { final NestedScrollingParentHelper parentHelper;}
    ViewGroupLayout exends NestedScrollingChild{ final NestedScrollingChildHelper childHelper;}
    一般在View的onTouchEvent函数中进行事件传的控制,在Down事件中子View调用startNestedScroll来询问父View是否需要拦截滑动事件,在 NestedScrollingChildHelper的帮助下将这个消息传递给父View的onStartNestedScroll方法,若父View拦截则返回ture,不拦截返回false。
    伪代码
    传递顺序
    接下来在case MotionEventACTION_MOVE中开始分发Move事件,通过ChildHelper的帮助将事件传递给父类,父类消耗后记录消耗的距离,子View获取到消耗量后进行运算,得到剩余的移动距离。若需要继续让父类获取事件,则调用dispatchNestedScroll()继续事件的分发。上图纵轴为时间轴,按照顺序调用。
    device-2019-03-10-133241 (1).gif
     public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) {
            // 应该移动的Y距离
            final float afterMarginTop = getY() + dy;
            int consumedY;
            // 如果超过了父View的上边界,只消费子View到父View上边的距离
            //向上滑<=100 不消耗,或者向下滑>100不消耗
            if ((afterMarginTop <= MARGIN_TOP && dy < 0) || (dy > 0  && afterMarginTop >= MARGIN_TOP)) {
                //父布局不消耗事件
                consumedY = 0;
            } else {
                // 其他情况下父布局全部消费
                consumedY = dy;
            }
            // 对父View进行移动
            setY(getY() + consumedY);
            // 将父View消费掉的放入consumed数组中
            consumed[1] = consumedY;
            Log.d(TAG, "onNestedPreScroll: ");
        }
    

    我们在父View的onNestedPreScroll中计算移动条件以及move事件消耗的距离。
    下面是自己实现的效果,代码参考
    https://github.com/yanglele/AndroidSample/blob/master/app/src/main/java/com/example/yangl/androidsample/touchEvent/scrollParent/MyNestedScrollActivity.java
    下面简单看下RecyclerView的调用startNestedScroll流程。


    但是看到这边有个疑问,如果在NestedScrollingChild与NestedScrollingParent之间插入一层ViewGroup,那样还能接收到滑动事件吗?

    NestedScrollingChildHelper
    在NestedScrollingChildHelper的startNestedScroll函数中,他会循环调用getParent()获取父布局,知道找到第一个实现NestedScrollingParent接口的布局,然后通过setNestedScrollingParentForType()将该parent
    进行记录,在dispatchNestedPreScroll()时直接获取该View,因此是可以调用得到的。
    最后,RecyclerView已经实现了NestedScrollingChild接口,因此在定制交互时,只需要实现ViewGroup的NestedScrollingParent,并在其内部实现交互,但是还是需要对移动的距离进行计算,较为麻烦,因此google的大神们写了Behavior,并内置了几种效果,供我们使用,下节介绍Behavior。

    相关文章

      网友评论

          本文标题:NestedScrollingParent接口的使用

          本文链接:https://www.haomeiwen.com/subject/cpqluqtx.html