国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

CoordinatorLayout滑動抖動問題

atinosun / 2331人閱讀

摘要:滑動抖動問題分析向上滾動無法被外部中斷和子的聯(lián)動時通過實現(xiàn)的,使用的繼承了。當(dāng)產(chǎn)生的向上的沒有結(jié)束時,又送來向下的,抖動就產(chǎn)生了。反射獲取私有的屬性,考慮以后變量名修改的問題及一下版本可能是及以上版本然后在攔截事件里處理邏輯。

目錄介紹

01.CoordinatorLayout滑動抖動問題描述

02.滑動抖動問題分析

03.自定義AppBarLayout.Behavior說明

04.CoordinatorLayout滑動抖動解決方案

05.案例測試是否根本問題

好消息

博客筆記大匯總【16年3月到至今】,包括Java基礎(chǔ)及深入知識點,Android技術(shù)博客,Python學(xué)習(xí)筆記等等,還包括平時開發(fā)中遇到的bug匯總,當(dāng)然也在工作之余收集了大量的面試題,長期更新維護(hù)并且修正,持續(xù)完善……開源的文件是markdown格式的!同時也開源了生活博客,從12年起,積累共計N篇[近100萬字,陸續(xù)搬到網(wǎng)上],轉(zhuǎn)載請注明出處,謝謝!

鏈接地址:https://github.com/yangchong2...

如果覺得好,可以star一下,謝謝!當(dāng)然也歡迎提出建議,萬事起于忽微,量變引起質(zhì)變!

01.CoordinatorLayout滑動抖動問題描述

先看下布局




    

        
        

        
        

    

    
    

出現(xiàn)的問題

用手指輕輕滑動CoordinatorLayout部分, 上滑, 快速抬起手指, 形成一個fling操作。其實就是向上滑動一下!

這時, 整個CoordinatorLayout部分會向上移動(fling),在停止移動之前,在下面的區(qū)域(也就是xml布局中的include_recycler_view)來一個反向的滑動(fling) , 這時整個頁面就會開始或大或小的抖動, 非常明顯。

02.滑動抖動問題分析

CoordinatorLayout向上fling滾動無法被外部中斷

CoordinatorLayout和子View的聯(lián)動時通過CoordinatorLayout.Behavior實現(xiàn)的,AppBarLayout使用的Behavior繼承了HeaderBehavior。

問題就在這里。HeaderBehavior的onTouchEvent中使用Scroller實現(xiàn)了fling操作,但是沒有通過NestedScrolling API對外開放,也就說一旦HeaderBehavior的fling動作形成,無法由外部主動中斷。

RecyclerView向下fling滾動

與AppBarLayout同層級的RecyclerView可以通過升級過的NestedScrolling API對AppBarLayout產(chǎn)生影響,比如RecyclerView向下fling時滑動到item 0之后,如果AppBarLayout可以滑動時會給AppBarLayout施加一個同樣向下的fling動作,以此形成一個連貫的下滑fling。

那么問題來了。當(dāng)HeaderBehavior產(chǎn)生的向上的fling沒有結(jié)束時,RecyclerView又送來向下的fling,抖動就產(chǎn)生了。

分析一下HeaderBehavior

當(dāng)檢測到down事件時, 取消了mScroller的運行(如果它正在scroll的話)。這里因為要訪問父類(其實是父類的父類)的 mScroller變量。

然后通過反射拿到mScroller變量,在onInterceptTouchEvent攔截事件中,當(dāng)手指離開的時候,則停止overScroller動畫效果。

然后通過反射拿到flingRunnable變量,在onInterceptTouchEvent攔截事件中,當(dāng)手指離開的時候,則需要remove所有的flingRunnable。

03.自定義AppBarLayout.Behavior說明

AppBarLayout簡單說明

AppBarLayout是一個vertical的LinearLayout,實現(xiàn)了很多material的概念,主要是跟滑動相關(guān)的。AppBarLayout的子view需要提供layout_scrollFlags參數(shù)。AppBarLayout和CoordinatorLayout強(qiáng)相關(guān),一般作為CoordinatorLayout的子類,配套使用。

按我的理解,AppBarLayout內(nèi)部有2種view,一種可滑出(屏幕),另一種不可滑出,根據(jù)app:layout_scrollFlags區(qū)分。一般上邊放可滑出的下邊放不可滑出的。

AppBarLayout.Behavior部分方法說明

onInterceptTouchEvent():是否攔截觸摸事件

onTouchEvent():處理觸摸事件

layoutDependsOn():確定使用Behavior的View要依賴的View的類型

onDependentViewChanged():當(dāng)被依賴的View狀態(tài)改變時回調(diào)

onDependentViewRemoved():當(dāng)被依賴的View移除時回調(diào)

onMeasureChild():測量使用Behavior的View尺寸

onLayoutChild():確定使用Behavior的View位置

onStartNestedScroll():嵌套滑動開始(ACTION_DOWN),確定Behavior是否要監(jiān)聽此次事件

onStopNestedScroll():嵌套滑動結(jié)束(ACTION_UP或ACTION_CANCEL)

onNestedScroll():嵌套滑動進(jìn)行中,要監(jiān)聽的子 View的滑動事件已經(jīng)被消費

onNestedPreScroll():嵌套滑動進(jìn)行中,要監(jiān)聽的子 View將要滑動,滑動事件即將被消費(但最終被誰消費,可以通過代碼控制)

onNestedFling():要監(jiān)聽的子 View在快速滑動中

onNestedPreFling():要監(jiān)聽的子View即將快速滑動

04.CoordinatorLayout滑動抖動解決

通過反射拿到flingRunnable變量,注意這里我判斷了一下27和28版本的問題,27及以下是mFlingRunnable,28及以上是flingRunnable,一定要注意這個問題。

/**
 * 反射獲取私有的flingRunnable 屬性,考慮support 28以后變量名修改的問題
 * @return Field

 */
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變量,和上面類似。

/**
 * 反射獲取私有的scroller 屬性,考慮support 28以后變量名修改的問題
 * @return Field

 */
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;
        }
    }
}
```

然后在onInterceptTouchEvent攔截事件里處理邏輯。當(dāng)手指觸摸屏幕的時候停止fling事件

@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);
}

/**
 * 停止appbarLayout的fling事件

 */
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);
        }
        //下面是關(guān)鍵點
        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();
    }
}
```

完整版本的代碼如下所示

/**
 * 
 *     @author yangchong
 *     blog  : https://github.com/yangchong211
 *     time  : 2019/03/13
 *     desc  : 自定義Behavior
 *     revise: 解決appbarLayout若干問題
 *              1)快速滑動appbarLayout會出現(xiàn)回彈
 *              2)快速滑動appbarLayout到折疊狀態(tài)下,立馬下滑,會出現(xiàn)抖動的問題
 *              3)滑動appbarLayout,無法通過手指按下讓其停止滑動

 */
public class AppBarLayoutBehavior extends AppBarLayout.Behavior {

    private static final String TAG = "AppbarLayoutBehavior";
    private static final int TYPE_FLING = 1;
    private boolean isFlinging;
    private boolean shouldBlockNestedScroll;

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

    @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) {
                headerBehaviorType = superclass.getSuperclass();
            }
            if (headerBehaviorType != null) {
                return headerBehaviorType.getDeclaredField("mFlingRunnable");
            }else {
                return null;
            }
        } catch (NoSuchFieldException e) {
            e.printStackTrace();
            // 可能是28及以上版本
            Class headerBehaviorType = superclass.getSuperclass().getSuperclass();
            if (headerBehaviorType != null) {
                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 = (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();
        }
    }

    @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);
    }

    @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時,表示當(dāng)前target處于非touch的滑動,
        //該bug的引起是因為appbar在滑動時,CoordinatorLayout內(nèi)的實現(xiàn)NestedScrollingChild2接口的滑動
        //子類還未結(jié)束其自身的fling
        //所以這里監(jiān)聽子類的非touch時的滑動,然后block掉滑動事件傳遞給AppBarLayout
        if (type == TYPE_FLING) {
            isFlinging = true;
        }
        if (!shouldBlockNestedScroll) {
            super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed, type);
        }
    }

    @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);
        }
    }

    @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);
        }
    }

}
```

05.案例測試是否根本問題

代碼如下所示

發(fā)現(xiàn)最終解決問題

案例代碼地址已經(jīng)開源:https://github.com/yangchong2...

06.參考案例

自定義Behavior實現(xiàn)AppBarLayout越界彈性效果:https://www.jianshu.com/p/bb3...

自定義Behavior:https://www.jianshu.com/p/b98...

其他介紹 01.關(guān)于博客匯總鏈接

1.技術(shù)博客匯總

2.開源項目匯總

3.生活博客匯總

4.喜馬拉雅音頻匯總

5.其他匯總

02.關(guān)于我的博客

github:https://github.com/yangchong211

知乎:https://www.zhihu.com/people/...

簡書:http://www.jianshu.com/u/b7b2...

csdn:http://my.csdn.net/m0_37700275

喜馬拉雅聽書:http://www.ximalaya.com/zhubo...

開源中國:https://my.oschina.net/zbj161...

泡在網(wǎng)上的日子:http://www.jcodecraeer.com/me...

郵箱:yangchong211@163.com

阿里云博客:https://yq.aliyun.com/users/a... 239.headeruserinfo.3.dT4bcV

segmentfault頭條:https://segmentfault.com/u/xi...

掘金:https://juejin.im/user/593943...

項目地址:https://github.com/yangchong2...

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/74901.html

相關(guān)文章

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<