Android CoordinatorLayout 嵌套 严重的卡顿BUG(自定义Behavior)

如果你用 CoordinatorLayout 嵌套AppBarLayout RecyclerView,你会发现一个问题,滑动会有卡顿,关键是,你如果一直用手指触碰屏幕滑动的话不会感觉什么。而卡顿是在产生惯性的时候。我们都知道现在的android滑动组件很牛逼,都有惯性的效果,你比如说RecyclerView,你滑动一定速度之后你放开手,它还会以减速的方式滑动一段距离。而这个demo不顺畅的地方就是在放开手之后的惯性上。别人也有遇到过这个问题

一 :解决CoordinatorLayout滑动卡顿

1. 大屌推荐之自定义Behavior 方法(这是我的布局)

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"

xmlns:app="http://schemas.android.com/apk/res-auto">


<android.support.design.widget.CoordinatorLayout
    android:id="@+id/coordinatorLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.design.widget.AppBarLayout
        android:background="@null"
        app:elevation="@dimen/dp_0"
        android:id="@+id/app_bar"
        app:layout_behavior=".utils.basic.CustomBehavior"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true">

        <RelativeLayout
            android:id="@+id/rel"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            app:layout_scrollFlags="scroll">

            <LinearLayout
                android:id="@+id/day_music"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center_vertical"
                android:orientation="horizontal">

                <TextView
                    android:id="@+id/data_time"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/dp_19"
                    android:text="06/18"
                    android:textColor="@color/white"
                    android:textSize="@dimen/dp_17">

                </TextView>

                <TextView
                    android:id="@+id/day_select"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/dp_9"
                    android:background="@mipmap/day_backgroup"
                    android:paddingLeft="@dimen/dp_15"
                    android:paddingTop="@dimen/dp_6"
                    android:text="每日精选歌曲"
                    android:textColor="@color/white"
                    android:textSize="@dimen/dp_13">

                </TextView>

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/dp_9"
                    android:src="@mipmap/right_image">

                </ImageView>
            </LinearLayout>

            <android.support.v7.widget.RecyclerView
                android:id="@+id/re_day"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/day_music"
                android:layout_marginLeft="@dimen/dp_19"
                android:layout_marginTop="@dimen/dp_12">


            </android.support.v7.widget.RecyclerView>

            <TextView
                android:id="@+id/nusic_class"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/re_day"
                android:layout_marginLeft="@dimen/dp_20"
                android:layout_marginTop="@dimen/dp_30"
                android:text="歌曲分类"
                android:textColor="@color/white"
                android:textSize="@dimen/dp_17">

            </TextView>

            <android.support.v7.widget.RecyclerView
                android:id="@+id/re_music"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/nusic_class"
                android:layout_marginLeft="@dimen/dp_19"
                android:layout_marginTop="@dimen/dp_12">


            </android.support.v7.widget.RecyclerView>

        </RelativeLayout>

        <android.support.design.widget.TabLayout
            android:id="@+id/tablayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMode="scrollable"
            app:tabSelectedTextColor="#FFFFFF"
            app:tabTextColor="@color/black40" />
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>

</LinearLayout>

二:我的工具包 utils CustomBehavior

  public class CustomBehavior extends AppBarLayout.Behavior {
private static final String TAG = "AppbarLayoutBehavior";
private static final int TYPE_FLING = 1;
/**
 * 记录是否有fling
 */
private boolean isFlinging;
/**
 * 记录是否
 */
private boolean shouldBlockNestedScroll;

public CustomBehavior(Context context, AttributeSet attrs) {
    super(context, attrs);
}

/**
 * 是否拦截触摸事件
 * @param parent                        CoordinatorLayout
 * @param child                         AppBarLayout
 * @param ev                            ev
 * @return
 */
@Override
public boolean onInterceptTouchEvent(CoordinatorLayout parent, AppBarLayout child, MotionEvent ev) {
    LogUtil.d(TAG, "onInterceptTouchEvent:" + child.getTotalScrollRange());
    shouldBlockNestedScroll = isFlinging;
    switch (ev.getActionMasked()) {
        case MotionEvent.ACTION_DOWN:
            //手指触摸屏幕的时候停止fling事件
            stopAppbarLayoutFling(child);
            break;
        default:
            break;
    }
    return super.onInterceptTouchEvent(parent, child, ev);
}

/**
 * 反射获取私有的flingRunnable 属性,考虑support 28以后变量名修改的问题
 * @return Field
 * @throws NoSuchFieldException
 */
private Field getFlingRunnableField() throws NoSuchFieldException {
    Class<?> superclass = this.getClass().getSuperclass();
    try {
        // support design 27及一下版本
        Class<?> headerBehaviorType = null;
        if (superclass != null) {
            String name = superclass.getName();
            LogUtil.d("AppBarLayout.Behavior父类",name);
            headerBehaviorType = superclass.getSuperclass();
        }
        if (headerBehaviorType != null) {
            String name = headerBehaviorType.getName();
            LogUtil.d("AppBarLayout.Behavior父类的父类1",name);
            return headerBehaviorType.getDeclaredField("mFlingRunnable");
        }else {
            return null;
        }
    } catch (NoSuchFieldException e) {
        e.printStackTrace();
        // 可能是28及以上版本
        Class<?> headerBehaviorType = superclass.getSuperclass().getSuperclass();
        if (headerBehaviorType != null) {
            String name = headerBehaviorType.getName();
            LogUtil.d("AppBarLayout.Behavior父类的父类2",name);
            return headerBehaviorType.getDeclaredField("flingRunnable");
        } else {
            return null;
        }
    }
}

/**
 * 反射获取私有的scroller 属性,考虑support 28以后变量名修改的问题
 * @return Field
 * @throws NoSuchFieldException
 */
private Field getScrollerField() throws NoSuchFieldException {
    Class<?> superclass = this.getClass().getSuperclass();
    try {
        // support design 27及一下版本
        Class<?> headerBehaviorType = null;
        if (superclass != null) {
            headerBehaviorType = superclass.getSuperclass();
        }
        if (headerBehaviorType != null) {
            return headerBehaviorType.getDeclaredField("mScroller");
        }else {
            return null;
        }
    } catch (NoSuchFieldException e) {
        e.printStackTrace();
        // 可能是28及以上版本
        Class<?> headerBehaviorType = superclass.getSuperclass().getSuperclass();
        if (headerBehaviorType != null) {
            return headerBehaviorType.getDeclaredField("scroller");
        }else {
            return null;
        }
    }
}

/**
 * 停止appbarLayout的fling事件
 * @param appBarLayout
 */
private void stopAppbarLayoutFling(AppBarLayout appBarLayout) {
    //通过反射拿到HeaderBehavior中的flingRunnable变量
    try {
        Field flingRunnableField = getFlingRunnableField();
        Field scrollerField = getScrollerField();
        if (flingRunnableField != null) {
            flingRunnableField.setAccessible(true);
        }
        if (scrollerField != null) {
            scrollerField.setAccessible(true);
        }
        Runnable flingRunnable = null;
        if (flingRunnableField != null) {
            flingRunnable = (Runnable) flingRunnableField.get(this);
        }
        OverScroller overScroller = null;
        if (scrollerField != null) {
            overScroller = (OverScroller) scrollerField.get(this);
        }
        //下面是关键点
        if (flingRunnable != null) {
            LogUtil.d(TAG, "存在flingRunnable");
            appBarLayout.removeCallbacks(flingRunnable);
            flingRunnableField.set(this, null);
        }
        if (overScroller != null && !overScroller.isFinished()) {
            overScroller.abortAnimation();
        }
    } catch (NoSuchFieldException e) {
        e.printStackTrace();
    } catch (IllegalAccessException e) {
        e.printStackTrace();
    }
}

/**
 * 嵌套滑动开始(ACTION_DOWN),确定Behavior是否要监听此次事件
 */
@Override
public boolean onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child,
                                   View directTargetChild, View target,
                                   int nestedScrollAxes, int type) {
    LogUtil.d(TAG, "onStartNestedScroll");
    stopAppbarLayoutFling(child);
    return super.onStartNestedScroll(parent, child, directTargetChild, target,
            nestedScrollAxes, type);
}

/**
 * 嵌套滑动进行中,要监听的子 View将要滑动,滑动事件即将被消费(但最终被谁消费,可以通过代码控制)
 */
@Override
public void onNestedPreScroll(CoordinatorLayout coordinatorLayout,
                              AppBarLayout child, View target,
                              int dx, int dy, int[] consumed, int type) {
    LogUtil.d(TAG, "onNestedPreScroll:" + child.getTotalScrollRange()
            + " ,dx:" + dx + " ,dy:" + dy + " ,type:" + 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);
    }
}

/**
 * 嵌套滑动进行中,要监听的子 View的滑动事件已经被消费
 */
@Override
public void onNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child,
                           View target, int dxConsumed, int dyConsumed, int
                                   dxUnconsumed, int dyUnconsumed, int type) {
    LogUtil.d(TAG, "onNestedScroll: target:" + target.getClass() + " ,"
            + child.getTotalScrollRange() + " ,dxConsumed:"
            + dxConsumed + " ,dyConsumed:" + dyConsumed + " " + ",type:" + type);
    if (!shouldBlockNestedScroll) {
        super.onNestedScroll(coordinatorLayout, child, target, dxConsumed,
                dyConsumed, dxUnconsumed, dyUnconsumed, type);
    }
}

/**
 * 嵌套滑动结束(ACTION_UP或ACTION_CANCEL)
 */
@Override
public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout abl,
                               View target, int type) {
    LogUtil.d(TAG, "onStopNestedScroll");
    super.onStopNestedScroll(coordinatorLayout, abl, target, type);
    isFlinging = false;
    shouldBlockNestedScroll = false;
}

private static class LogUtil{
    static void d(String tag, String string){
        Log.d(tag,string);
    }
}

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