美文网首页
NestedScrolling机制从原理到实践

NestedScrolling机制从原理到实践

作者: Mastiq | 来源:发表于2018-03-16 00:58 被阅读0次

    NestedScrolling机制

    按照原有的事件分发机制,当父View拦截了事件序列中的一段MOVE事件,就不能再把接下来的事件传递给子View,所以难以实现父View滑动了一部分再由子View滑动的效果。

    Android在5.0之后提供了NestedScrolling机制解决了这个问题。实现了NestedScrolling机制的View会在处理滑动和fling的时候调用实现NestedScrollingParent接口的父View中的方法,由父View决定由谁来滑动或者两者分别滑动多少。

    以RecyclerView为例,在onTouchEvent方法中处理MOVE事件时会调用dispatchNestedPreScroll方法,将即将要滑动的距离传递给NestedScrollingParent,最终调用Parent的onNestedPreScroll方法,Parent处理完了之后RecyclerView拿到Parent消费过的大小,计算得出自己应该滑动的大小。

    case MotionEvent.ACTION_MOVE: {
                    final int index = MotionEventCompat.findPointerIndex(e, mScrollPointerId);
                    if (index < 0) {
                        Log.e(TAG, "Error processing scroll; pointer index for id " +
                                mScrollPointerId + " not found. Did any MotionEvents get skipped?");
                        return false;
                    }
    
                    final int x = (int) (MotionEventCompat.getX(e, index) + 0.5f);
                    final int y = (int) (MotionEventCompat.getY(e, index) + 0.5f);
                    int dx = mLastTouchX - x;
                    int dy = mLastTouchY - y;
    
                    if (dispatchNestedPreScroll(dx, dy, mScrollConsumed, mScrollOffset)) {
                        dx -= mScrollConsumed[0];
                        dy -= mScrollConsumed[1];
                        vtev.offsetLocation(mScrollOffset[0], mScrollOffset[1]);
                        // Updated the nested offsets
                        mNestedOffsets[0] += mScrollOffset[0];
                        mNestedOffsets[1] += mScrollOffset[1];
                    }
    

    fling的过程类似,在开始fling之前会调用一次Parent的onNestedPreFling方法,由Parent决定由谁来处理fling。

    我们只需要关注onNestedPreScroll方法和onNestedPreFling。

    实践

    • 效果

    效果


    页面布局是头部一个ProfileView,底部三个ChildFragment,每个ChildFragment内部包含一个RecyclerView,需要实现RecyclerView和父View的嵌套滑动。

    • 一、Measure

    父View继承自LinearLayout,按照LinearLayout的measure方式,如果ChildFragment里的RecyclerView的高度是match_parent的,滑动父View时会发现RecyclerView的下半部分是空白的,因为父View调用scrollBy的时候并不会重新measure,RecyclerView的高度还是以前的高度。为了让父View滑动时RecyclerView看起来仍然占满下半部分屏幕,在onMeasure方法里给ChildFragment的高度添加PorfileView的高度。

    @Override
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
            mMaxScrollY = mTopView.getMeasuredHeight();
            // assert the last child contains RecyclerView or ListView
            mContent = getChildAt(getChildCount() - 1);
            if (mContent != null) {
                LayoutParams params = (LayoutParams) mContent.getLayoutParams();
                mContent.measure(getChildMeasureSpec(widthMeasureSpec,
                        getPaddingLeft() + getPaddingRight() + params.leftMargin + params.rightMargin, params.width),
                        MeasureSpec.makeMeasureSpec(mContent.getMeasuredHeight() + mMaxScrollY, MeasureSpec.EXACTLY));
            }
        }
    
    • 二、Scroll

    当向上滑动时如果scrollY小于ProfileView的高度,或者向下滑动时scrollY大于0并且RecyclerView不能滑动时 父View完全消费滑动的距离,其他情况由RecyclerView处理滑动。

    • 三、Fling

    fling的处理比scroll更麻烦,因为每次RecyclerView处理MOVE事件,Parent都有机会处理滑动,但是fling只会在开始的时候调用Parent的方法,只能决定是否由Parent自己处理fling,无法中途更换处理对象。为了实现RecyclerView fling到顶部之后ProfileView继续fling的效果,必须把fling过程完全托管给父View,由父View调用Scroller的fling方法,在computeScroll方法中根据位置判断由谁应该滑动。

    private boolean up = false;
        private int lastY;
        @Override
        public void computeScroll() {
            if (mScroller.computeScrollOffset()) {
                if (up) {
                    if (getScrollY() > 0 && !(mICanScroll == null ? false : mICanScroll.canScroll(-1))) {
                        scrollBy(0, mScroller.getCurrY() - lastY);
                    } else {
                        mICanScroll.scroll(mScroller.getCurrY() - lastY);
                    }
                } else {
                    if (getScrollY() < mMaxScrollY) {
                        scrollBy(0, mScroller.getCurrY() - lastY);
                    } else {
                        mICanScroll.scroll(mScroller.getCurrY() - lastY);
                    }
                }
                invalidate();
                lastY = mScroller.getCurrY();
            }
        }
    

    不足

    • 1.不支持5.0以下的ListView和ScrollView。ListView和ScrollView只有在5.0以上才实现了NestedScrolling机制。

    • 2.由于RecyclerView在屏幕之外延伸出一块,getVisibleCount之类的方法可能会出现偏差。

    相关文章

      网友评论

          本文标题:NestedScrolling机制从原理到实践

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