NestedScrollView嵌套RecyclerView實(shí)現(xiàn)仿京東Tab吸頂效果

概述

本文主要分享使用NestedScrollView嵌套RecyclerView實(shí)現(xiàn)仿京東Tab吸頂效果曲管,先來看一下效果圖:

image

實(shí)現(xiàn)要點(diǎn)

  • Tab控件如何吸頂
  • 如何實(shí)現(xiàn)嵌套滾動养葵,即父view可以滾動的情況下子view也可以滾動
  • 如何實(shí)現(xiàn)慣性滑動

Tab控件吸頂

先看一下布局結(jié)構(gòu):

<com.fmt.conflictproject.view.NestedScrollLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <com.fmt.conflictproject.view.ConflictRecyclerView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <com.google.android.material.tabs.TabLayout
                android:id="@+id/tablayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

            <androidx.viewpager2.widget.ViewPager2
                android:id="@+id/viewpager_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </LinearLayout>

    </LinearLayout>

</com.fmt.conflictproject.view.NestedScrollLayout>

布局中使用了LinearLayout包裹TabLayout與ViewPager2作為內(nèi)容控件屡限,那將LinearLayout的高度設(shè)置為NestedScrollView的高度即可實(shí)現(xiàn)TabLayout吸頂效果宠默,本質(zhì)上是NestedScrollView滑到底了,所以TabLayout自然就吸頂了禽拔,代碼如下:

@Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        ViewGroup.LayoutParams layoutParams = mContentView.getLayoutParams();
        layoutParams.height = getMeasuredHeight();
        mContentView.setLayoutParams(layoutParams);
    }

如何實(shí)現(xiàn)嵌套滾動

嵌套滾動的兩個角色:NestedScrollingParent3與NestedScrollingChild3胜茧,由NestedScrollingChild3觸發(fā)嵌套滾動事件,這里采用NestedScrollView嵌套RecyclerView的實(shí)現(xiàn)方法骗炉,而NestedScrollView與RecyclerView分別實(shí)現(xiàn)了NestedScrollingParent3與NestedScrollingChild3
但需要注意照宝,當(dāng)使用NestedScrollView嵌套RecyclerView并將內(nèi)容控件的高度設(shè)置為NestedScrollView的高度后,會出現(xiàn)一個奇怪的現(xiàn)象如下:

可以發(fā)現(xiàn)句葵,在滑動RecyclerView時并沒有先讓NestedScrollView滾動到頂部后厕鹃,然后RecyclerView在滑動,那是什么原因造成的呢乍丈?先來看一下嵌套滾動的大致流程圖:

圖片 1.png

從流程圖可以發(fā)現(xiàn)剂碴,在NestedScrollingChild滾動前會調(diào)用dispatchNestedPreScroll方法詢問NestedScrollingParent是否要先滾動,而NestedScrollingParent會調(diào)用自身的onNestedPreScroll方法處理事件轻专,那追蹤NestedScrollView的onNestedPreScroll方法:

    @Override
    public void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed,
            int type) {
        dispatchNestedPreScroll(dx, dy, consumed, null, type);
    }
    
    @Override
    public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow,
            int type) {
        return mChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow, type);
    }
    //該方法屬于NestedScrollingChildHelper
    public boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed,
            @Nullable int[] offsetInWindow, @NestedScrollType int type) {
        if (isNestedScrollingEnabled()) {
            final ViewParent parent = getNestedScrollingParentForType(type);
            if (parent == null) {
                return false;
            }

            if (dx != 0 || dy != 0) {
                int startX = 0;
                int startY = 0;
                if (offsetInWindow != null) {
                    mView.getLocationInWindow(offsetInWindow);
                    startX = offsetInWindow[0];
                    startY = offsetInWindow[1];
                }

                if (consumed == null) {
                    consumed = getTempNestedScrollConsumed();
                }
                consumed[0] = 0;
                consumed[1] = 0;
                ViewParentCompat.onNestedPreScroll(parent, mView, dx, dy, consumed, type);

                if (offsetInWindow != null) {
                    mView.getLocationInWindow(offsetInWindow);
                    offsetInWindow[0] -= startX;
                    offsetInWindow[1] -= startY;
                }
                return consumed[0] != 0 || consumed[1] != 0;
            } else if (offsetInWindow != null) {
                offsetInWindow[0] = 0;
                offsetInWindow[1] = 0;
            }
        }
        return false;
    }

由源碼可知忆矛,NestedScrollView的onNestedPreScroll方法并沒有處理滑動事件,而是調(diào)用了dispatchNestedPreScroll方法將事件又傳遞給了NestedScrollingParent了请垛,由于NestedScrollView本身即實(shí)現(xiàn)了NestedScrollingParent又實(shí)現(xiàn)了NestedScrollingChild催训,所以導(dǎo)致無法先滾動到頂部的現(xiàn)象,那只需重新onNestedPreScroll方法并實(shí)現(xiàn)滾動到頂部的邏輯即可解決此問題叼屠,代碼如下:

   @Override
    public void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed, int type) {
        //super.onNestedPreScroll(target, dx, dy, consumed, type);
         boolean hideTop = dy > 0 && getScrollY() < mHeadView.getMeasuredHeight();

        if (hideTop) {
            //滾動到相應(yīng)的滑動距離
            scrollBy(0, dy);
            //記錄父控件消費(fèi)的滾動記錄瞳腌,防止子控件重復(fù)滾動
            consumed[1] = dy;
        }
    }

如何實(shí)現(xiàn)慣性滑動

觀察京東的滾動效果,可以發(fā)現(xiàn)镜雨,當(dāng)快速滑動父控件松手后,會帶動子控件慣性向上滑動,那如何實(shí)現(xiàn)這張效果呢荚坞?

實(shí)現(xiàn)思路:

  • 記錄父控件慣性滑動的速度
  • 將慣性滑動的速度轉(zhuǎn)化成距離
  • 計(jì)算子控件應(yīng)滑的距離 = 慣性距離 - 父控件已滑動距離
  • 將子控件應(yīng)滑的距離轉(zhuǎn)化成速交給子控件進(jìn)行慣性滑動

記錄父控件慣性滑動的速度

@Override
    public void fling(int velocityY) {
        super.fling(velocityY);
        if (velocityY <= 0) {
            mVelocityY = 0;
        } else {
            mVelocityY = velocityY;
        }
    }

記錄父控件慣性滑動的速度

double distance = mFlingHelper.getSplineFlingDistance(mVelocityY);

計(jì)算子控件應(yīng)滑的距離 = 慣性距離 - 父控件已滑動距離

//設(shè)置滾動監(jiān)聽事件
setOnScrollChangeListener(new View.OnScrollChangeListener() {

    @Override
    public void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {
        /*
         * scrollY == 0 即還未滾動
         * scrollY == getChildAt(0).getMeasuredHeight() - v.getMeasuredHeight()即滾動到頂部了
         */
        //判斷NestedScrollView是否滾動到頂部挑宠,若滾動到頂部,判斷子控件是否需要繼續(xù)滾動滾動
        if (scrollY == getChildAt(0).getMeasuredHeight() - v.getMeasuredHeight()) {
            dispatchChildFling();
        }
        //累計(jì)自身滾動的距離
        mConsumedY += scrollY - oldScrollY;
    }
});     

將子控件應(yīng)滑的距離轉(zhuǎn)化成速交給子控件進(jìn)行慣性滑動

private void dispatchChildFling() {
    if (mVelocityY != 0) {
        //將慣性滑動速度轉(zhuǎn)化成距離
        double distance = mFlingHelper.getSplineFlingDistance(mVelocityY);
        //計(jì)算子控件應(yīng)該滑動的距離 = 慣性滑動距離 - 已滑距離
        if (distance > mConsumedY) {
            RecyclerView recyclerView = getChildRecyclerView(mContentView);
            if (recyclerView != null) {
                //將剩余滑動距離轉(zhuǎn)化成速度交給子控件進(jìn)行慣性滑動
                int velocityY = mFlingHelper.getVelocityByDistance(distance - mConsumedY);
                recyclerView.fling(0, velocityY);
            }
        }
    }

    mConsumedY = 0;
    mVelocityY = 0;
}

NestedScrollLayout核心類實(shí)現(xiàn)

public class NestedScrollLayout extends NestedScrollView {

    ViewGroup mHeadView;//頂部控件
    ViewGroup mContentView;//內(nèi)容控件
    int mVelocityY;//慣性滾動速度
    FlingHelper mFlingHelper;//處理慣性滑動速度與距離的轉(zhuǎn)化
    int mConsumedY;//記錄自身已經(jīng)滾動的距離

    public NestedScrollLayout(@NonNull Context context) {
        this(context, null);
    }

    public NestedScrollLayout(@NonNull Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public NestedScrollLayout(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        mFlingHelper = new FlingHelper(getContext());
        //設(shè)置滾動監(jiān)聽事件
        setOnScrollChangeListener(new View.OnScrollChangeListener() {

            @Override
            public void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {
                /*
                 * scrollY == 0 即還未滾動
                 * scrollY == getChildAt(0).getMeasuredHeight() - v.getMeasuredHeight()即滾動到頂部了
                 */
                //判斷NestedScrollView是否滾動到頂部颓影,若滾動到頂部各淀,判斷子控件是否需要繼續(xù)滾動滾動
                if (scrollY == getChildAt(0).getMeasuredHeight() - v.getMeasuredHeight()) {
                    dispatchChildFling();
                }
                //累計(jì)自身滾動的距離
                mConsumedY += scrollY - oldScrollY;
            }
        });
    }

    //將慣性滑動剩余的距離分發(fā)給子控件,繼續(xù)慣性滑動
    private void dispatchChildFling() {
        if (mVelocityY != 0) {
            //將慣性滑動速度轉(zhuǎn)化成距離
            double distance = mFlingHelper.getSplineFlingDistance(mVelocityY);
            //計(jì)算子控件應(yīng)該滑動的距離 = 慣性滑動距離 - 已滑距離
            if (distance > mConsumedY) {
                RecyclerView recyclerView = getChildRecyclerView(mContentView);
                if (recyclerView != null) {
                    //將剩余滑動距離轉(zhuǎn)化成速度交給子控件進(jìn)行慣性滑動
                    int velocityY = mFlingHelper.getVelocityByDistance(distance - mConsumedY);
                    recyclerView.fling(0, velocityY);
                }
            }
        }

        mConsumedY = 0;
        mVelocityY = 0;
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        mHeadView = (ViewGroup) ((ViewGroup) getChildAt(0)).getChildAt(0);
        mContentView = (ViewGroup) ((ViewGroup) getChildAt(0)).getChildAt(1);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        //第一個要點(diǎn):頂部懸浮效果
        //解決方式:將內(nèi)容布局的高度設(shè)置為NestedScrollView的高度诡挂,即滑到頂了碎浇,自然就固定在頂部了
        ViewGroup.LayoutParams layoutParams = mContentView.getLayoutParams();
        layoutParams.height = getMeasuredHeight();
        mContentView.setLayoutParams(layoutParams);
    }

    /**
     * 嵌套滑動的兩個角色:NestedScrollingParent3和NestedScrollingChild3,是由NestedScrollingChild3觸發(fā)嵌套滑動璃俗,由NestedScrollingParent3觸發(fā)不算嵌套滑動
     * 小結(jié):子控件觸發(fā)dispatchNestedPreScroll時會先調(diào)用支持嵌套滾動父控件的onNestedPreScroll讓父控件先滾動奴璃,再執(zhí)行
     * 自身的dispatchNestedScroll進(jìn)行滾動
     */
    @Override
    public void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed, int type) {
        //super.onNestedPreScroll(target, dx, dy, consumed, type);
        /*
          第二個要點(diǎn):先讓NestedScrollingParent3滑動到頂部后,NestedScrollingChild3才可以滑動
          解決方法:由于NestedScrollView即實(shí)現(xiàn)了NestedScrollingParent3又實(shí)現(xiàn)了NestedScrollingChild3城豁,
                  所以super.onNestedPreScroll(target, dx, dy, consumed, type)內(nèi)部實(shí)現(xiàn)又會去調(diào)用父控件
                  的onNestedPreScroll方法苟穆,就會出現(xiàn)NestedScrollView無法滑動到頂部的想象,所以此處
                  注釋掉super.onNestedPreScroll(target, dx, dy, consumed, type)唱星,實(shí)現(xiàn)滑動邏輯
         */

        //向上滾動并且滾動的距離小于頭部控件的高度雳旅,則此時父控件先滾動并記錄消費(fèi)的滾動距離
        boolean hideTop = dy > 0 && getScrollY() < mHeadView.getMeasuredHeight();

        if (hideTop) {
            //滾動到相應(yīng)的滑動距離
            scrollBy(0, dy);
            //記錄父控件消費(fèi)的滾動記錄,防止子控件重復(fù)滾動
            consumed[1] = dy;
        }
    }


    /**
     * 要點(diǎn)三:慣性滑動间聊,父控件在滑動完成后攒盈,在通知子控件滑動,此時不是嵌套滾動
     * 解決方法:1.記錄慣性滑動的速度
     * 2.將速度轉(zhuǎn)化成距離
     * 3.計(jì)算子控件應(yīng)該滑動的距離 = 慣性滑動距離 - 已滑距離
     * 4.將剩余滑動距離轉(zhuǎn)化成速度交給子控件進(jìn)行慣性滑動
     */
    @Override
    public void fling(int velocityY) {
        super.fling(velocityY);
        //3.1記錄慣性滾動的速度
        if (velocityY <= 0) {
            mVelocityY = 0;
        } else {
            mVelocityY = velocityY;
        }
    }

    //遞歸獲取子控件RecyclerView
    private RecyclerView getChildRecyclerView(ViewGroup viewGroup) {
        for (int i = 0; i < viewGroup.getChildCount(); i++) {
            View view = viewGroup.getChildAt(i);
            if (view instanceof RecyclerView && Objects.requireNonNull(((RecyclerView) view).getLayoutManager()).canScrollVertically()) {
                return (RecyclerView) view;
            } else if (viewGroup.getChildAt(i) instanceof ViewGroup) {
                RecyclerView childRecyclerView = getChildRecyclerView((ViewGroup) viewGroup.getChildAt(i));
                if (childRecyclerView != null && Objects.requireNonNull((childRecyclerView).getLayoutManager()).canScrollVertically()) {
                    return childRecyclerView;
                }
            }
        }
        return null;
    }
}

完整代碼實(shí)現(xiàn)

百度鏈接
密碼:r6mi

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市哎榴,隨后出現(xiàn)的幾起案子型豁,更是在濱河造成了極大的恐慌,老刑警劉巖叹话,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件偷遗,死亡現(xiàn)場離奇詭異,居然都是意外死亡驼壶,警方通過查閱死者的電腦和手機(jī)氏豌,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來热凹,“玉大人泵喘,你說我怎么就攤上這事“忝睿” “怎么了纪铺?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長碟渺。 經(jīng)常有香客問我鲜锚,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任芜繁,我火速辦了婚禮旺隙,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘骏令。我一直安慰自己蔬捷,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布榔袋。 她就那樣靜靜地躺著周拐,像睡著了一般。 火紅的嫁衣襯著肌膚如雪凰兑。 梳的紋絲不亂的頭發(fā)上妥粟,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天,我揣著相機(jī)與錄音聪黎,去河邊找鬼罕容。 笑死,一個胖子當(dāng)著我的面吹牛稿饰,可吹牛的內(nèi)容都是我干的锦秒。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼喉镰,長吁一口氣:“原來是場噩夢啊……” “哼旅择!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起侣姆,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤生真,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后捺宗,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體柱蟀,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年蚜厉,在試婚紗的時候發(fā)現(xiàn)自己被綠了长已。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡昼牛,死狀恐怖术瓮,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情贰健,我是刑警寧澤胞四,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站伶椿,受9級特大地震影響辜伟,放射性物質(zhì)發(fā)生泄漏氓侧。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一游昼、第九天 我趴在偏房一處隱蔽的房頂上張望甘苍。 院中可真熱鬧尝蠕,春花似錦烘豌、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至靖榕,卻和暖如春标锄,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背茁计。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工料皇, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人星压。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓践剂,卻偏偏與公主長得像,于是被迫代替她去往敵國和親娜膘。 傳聞我的和親對象是個殘疾皇子逊脯,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評論 2 351