使用RecyclerView加NestedScrolling滑动嵌套机制实现悬浮

package yungtat.xt.nesteddemo;

import android.content.Context;

import android.support.annotation.NonNull;

import android.support.annotation.Nullable;

import android.support.v4.view.NestedScrollingChild;

import android.support.v4.view.NestedScrollingParent;

import android.support.v4.view.NestedScrollingParentHelper;

import android.support.v4.view.ViewCompat;

import android.support.v7.widget.LinearLayoutManager;

import android.support.v7.widget.RecyclerView;

import android.support.v7.widget.StaggeredGridLayoutManager;

import android.util.AttributeSet;

import android.view.MotionEvent;

import android.view.View;

import android.view.ViewGroup;

/**

* Created by Tong on 2019/4/2

* 使用NestedScrollingParent实现悬浮条

* 给需要悬浮的Item根布局打上"LAYOUT_TAG"的标签,

* 悬浮条打上"FLOAT_TAG"的标签

* 悬浮时替换之前的悬浮条

*/

public class SuspendRecyclerViewextends RecyclerViewimplements NestedScrollingParent {

private static final StringLAYOUT_TAG ="floatView";

    private static final StringFLOAT_TAG ="float";

    private static final StringHIDDEN_FLOAT_TAG ="hid_float";

    private NestedScrollingParentHelpermNestedScrollingParentHelper;

    //悬浮的item距离父类多少时显示悬浮

    private int mSuspendTop;

    //悬浮条

    private ViewmSuspendView;

    //承载悬浮条的Item

    private ViewmSuspendItem;

    //嵌套滑动

    private ViewmScrollTarget, mScrollParent, mScrollSuspendView;

    private ISuspendViewListenermListener;

    public interface ISuspendViewListener {

void onSuspendViewListener(int position, View item);

    }

public void setSuspendViewListener(ISuspendViewListener listener) {

this.mListener = listener;

    }

public SuspendRecyclerView(@NonNull Context context) {

this(context, null);

    }

public SuspendRecyclerView(@NonNull Context context, @Nullable AttributeSet attrs) {

this(context, attrs, 0);

    }

public SuspendRecyclerView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

        init();

    }

private void init() {

mSuspendTop =0;

        mNestedScrollingParentHelper =new NestedScrollingParentHelper(this);

    }

@Override

    public boolean onInterceptTouchEvent(MotionEvent e) {

return false;

    }

@Override

    public boolean onStartNestedScroll(@NonNull View child, @NonNull View target, int axes) {

mScrollParent = child;

        mScrollTarget = target;

        mScrollSuspendView = getFloatView(child);

        setSuspendLocation(mScrollParent, mScrollSuspendView);

        if (targetinstanceof NestedScrollingChild) {

return true;

        }

return super.onStartNestedScroll(child, target, axes);

    }

@Override

    public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, int axes) {

mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);

    }

@Override

    public void onStopNestedScroll(@NonNull View target) {

mNestedScrollingParentHelper.onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);

    }

@Override

    public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed,

                              int dxUnconsumed, int dyUnconsumed) {

final int oldScrollY = getScrollY();

        scrollBy(0, dyUnconsumed);

        final int myConsumed = getScrollY() - oldScrollY;

        final int myUnconsumed = dyUnconsumed - myConsumed;

        dispatchNestedScroll(0, myConsumed, 0, myUnconsumed, null);

    }

@Override

    public void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed) {

setSuspendLocation(mScrollParent, mScrollSuspendView);

        if (dy >0) {//向上滑动

            if (getItemVirtualY(mScrollParent) <=0) {

consumed[1] =0;

            }else {

scrollBy(0, dy);

                consumed[1] = dy;

            }

}else {//向下滑动

            if (!target.canScrollVertically(-1) || getItemVirtualY(mScrollParent) <0) {

if (Math.abs(dy) < Math.abs(getItemVirtualY(mScrollParent)) || (getItemVirtualY(mScrollParent) ==0)) {

scrollBy(0, dy);

                }else {

scrollBy(0, getItemVirtualY(mScrollParent));

                }

consumed[1] = dy;

            }else {

consumed[1] =0;

            }

}

}

@Override

    public boolean onNestedPreFling(@NonNull View target, float velocityX, float velocityY) {

if (getItemVirtualY(mScrollParent) >0) {

fling((int) velocityX, (int) (velocityY *0.8));

return true;

        }

if (velocityY <0 && (!target.canScrollVertically(-1) || getItemVirtualY(mScrollParent) <0)) {

fling((int) velocityX, (int) (velocityY));

return true;

        }

return super.onNestedPreFling(target, velocityX, velocityY);

    }

@Override

    public boolean onNestedFling(@NonNull View target, float velocityX, float velocityY,

                                boolean consumed) {

if (velocityY >0 && !target.canScrollVertically(1)) {

fling((int) velocityX, (int) (velocityY *0.8));

return true;

        }

return super.onNestedFling(target, velocityX, velocityY, consumed);

    }

@Override

    public void onScrolled(int dx, int dy) {

super.onScrolled(dx, dy);

        initView();

        setSuspendLocation(mSuspendItem, mSuspendView);

        if (mScrollParent !=null &&mScrollSuspendView !=null &&mScrollTarget !=null) {

setSuspendLocation(mScrollParent, mScrollSuspendView);

        }

if (mSuspendItem !=null) {

if (Math.abs(dy) > Math.abs(getItemVirtualY())) {

if ((dy >0 && getItemVirtualY() <0)//向上拉

                        || (dy <0)) {//向下拉

                    stopScroll();

                    scrollBy(0, getItemVirtualY());

                }

}

}

}

private void initView() {

if (getLayoutManager() ==null || !(getLayoutManager()instanceof LinearLayoutManager || getLayoutManager()instanceof StaggeredGridLayoutManager)) {

return;

        }

LinearLayoutManager layoutManager = (LinearLayoutManager) getLayoutManager();

        int firstPosition = layoutManager.findFirstVisibleItemPosition();

        int lastPosition = layoutManager.findLastVisibleItemPosition();

        if (firstPosition != lastPosition && lastPosition < getChildCount()) {

for (int i = firstPosition; i < (lastPosition - firstPosition); i++) {

setSuspendLocation(getChildAt(i));

            }

}

View child = layoutManager.findViewByPosition(firstPosition);

        if (child !=null && child.getTag() !=null && child.getTag().toString().equals(LAYOUT_TAG)) {

mSuspendItem = child;

            mSuspendView = getFloatView(child);

            if (mSuspendView !=null &&mListener !=null) {

mListener.onSuspendViewListener(firstPosition, child);

            }

}

setSuspendLocation(mSuspendItem, mSuspendView);

    }

/**

    * 悬浮条位置

    *

    * @param container 容器

    * @param view      悬浮条

    */

    private void setSuspendLocation(View container, View view) {

if (container !=null && view !=null) {

float kk = -getItemVirtualY(container);

            int max = container.getMeasuredHeight() - view.getMeasuredHeight();

            if (kk <=0) {

kk =0;

            }else if (kk > max) {

kk = max;

            }

view.setY(kk);

        }

}

/**

    * 悬浮条位置

    *

    * @param container 容器

    */

    private void setSuspendLocation(View container) {

if (containerinstanceof ViewGroup) {

int childCount = ((ViewGroup) container).getChildCount();

            View mFloatView=null;

            View mHidFloatView=null;

            for (int i =0; i < childCount; i++) {

View childItem = ((ViewGroup) container).getChildAt(i);

                if (childItem !=null && childItem.getTag() !=null) {

if (childItem.getTag().toString().equals(FLOAT_TAG)) {

float kk = -getItemVirtualY(container);

                        int max = container.getMeasuredHeight() - childItem.getMeasuredHeight();

                        if (kk <=0) {

kk =0;

                        }else if (kk > max) {

kk = max;

                        }

mFloatView=childItem;

                        childItem.setY(kk);

                    }else if (childItem.getTag().toString().equals(HIDDEN_FLOAT_TAG)) {

mHidFloatView=childItem;

                    }

}

}

if(mHidFloatView!=null&&mFloatView!=null){

if(mFloatView.getY()!=0){

mHidFloatView.setVisibility(View.VISIBLE);

                    mFloatView.setVisibility(View.INVISIBLE);

                }else {

mHidFloatView.setVisibility(View.INVISIBLE);

                    mFloatView.setVisibility(View.VISIBLE);

                }

}

}

}

private ViewgetFloatView(@NonNull View child) {

if (childinstanceof ViewGroup) {

int childCount = ((ViewGroup) child).getChildCount();

            for (int i =0; i < childCount; i++) {

View childItem = ((ViewGroup) child).getChildAt(i);

                if (childItem.getTag() !=null) {

if (childItem.getTag().toString().equals(FLOAT_TAG)) {

return childItem;

                    }

}

}

}

return null;

    }

/**

    * item 真实Y轴+想要停止的Y轴

    */

    private int getItemVirtualY(View... views) {

if (views.length >=1) {

return (int) (views[0].getY() -mSuspendTop);

        }

if (mSuspendItem !=null) {

return (int) (mSuspendItem.getY() -mSuspendTop);

        }

return 0;

    }

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,681评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,710评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,623评论 0 334
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,202评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,232评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,368评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,795评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,461评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,647评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,476评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,525评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,226评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,785评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,857评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,090评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,647评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,215评论 2 341

推荐阅读更多精彩内容