RecyclerView 滑動控制筆記

為了將指定的 item 平滑的滑動至置頂凫碌。

  • 簡單的直接置頂:
mLayoutManager.scrollToPositionWithOffset(position, 0);//沒有滑動嗜历,直接置頂

缺點是體驗不好,沒有滑動的過程。

  • RecyclerView 的滑動方法
rv.scrollToPosition(index);//直接定位闻丑,沒有滑動的過程挠锥,不能置頂
rv.smoothScrollToPosition(position);//平滑的滑動众羡,不能置頂
rv.scrollBy(int x, int y);

scrollToPosition();smoothScrollToPosition() 將對應(yīng)的 item 滑動到屏幕內(nèi),當(dāng) item 變?yōu)榭梢姇r則停止滑動蓖租。
所以當(dāng)指定的 item 在當(dāng)前屏幕的下方時粱侣,滑動后目標 item 會出現(xiàn)屏幕的最底部;
當(dāng)指定 item 在屏幕可見時蓖宦,則完全沒有滑動齐婴。
很多時候這個方法是不符合我們預(yù)期的,有時候稠茂,我們希望能將指定的 item 平滑的滑動到當(dāng)前的屏幕頂端或中間柠偶。
這時候可以配合 scrollBy() 來做一個判斷:

private void setSelectPosition(int index) {
    //當(dāng)前可見的第一項和最后一項
    int firstItem = linearLayoutManager.findFirstVisibleItemPosition();
    int lastItem = linearLayoutManager.findLastVisibleItemPosition();
    if (index <= firstItem) {
        //當(dāng)要置頂?shù)捻椩诋?dāng)前顯示的第一個項的前面時,直接調(diào)用沒有問題
        rv.scrollToPosition(index);
    } else if (index <= lastItem) {
        //當(dāng)要置頂?shù)捻椧呀?jīng)在屏幕上顯示時睬关,計算需要滑動的距離
        int top = rv.getChildAt(index - firstItem).getTop();
        rv.scrollBy(0, top);
    } else {
        //當(dāng)指定的 item 在當(dāng)前顯示的最后一項的后面時
        //這時候一次的滑動不足以將指定 item 放到頂端
        rv.scrollToPosition(index);
        //記錄當(dāng)前需要在RecyclerView滾動監(jiān)聽里面繼續(xù)第二次滾動
        move = true;
    }
}
//在第三種的情況中诱担,scrollToPosition() 結(jié)束后該方法被調(diào)用
class RecyclerViewListener extends RecyclerView.OnScrollListener{
        @Override
        public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
            super.onScrolled(recyclerView, dx, dy);
            //在這里進行第二次滾動
            if (move ){
                move = false;
                int n = mIndex - mLinearLayoutManager.findFirstVisibleItemPosition();
                if ( 0 <= n && n < mRecyclerView.getChildCount()){
                    //要移動的距離
                    int top = mRecyclerView.getChildAt(n).getTop();
                    mRecyclerView.scrollBy(0, top);
                }
            }
        }
    }

上面這個方面也是看到別人的實現(xiàn)的思路,雖然沒什么問題不過還是算是取巧的一種方法电爹,僅記錄蔫仙。

其實 Stack Overflow 上已經(jīng)有了更好的答案 :RecyclerView - How to smooth scroll to top of item on a certain position?

  • 重寫 LinearLayoutManager
public class LinearLayoutManagerWithSmoothScroller extends LinearLayoutManager {

    public LinearLayoutManagerWithSmoothScroller(Context context) {
        super(context, VERTICAL, false);
    }

    public LinearLayoutManagerWithSmoothScroller(Context context, int orientation, boolean reverseLayout) {
        super(context, orientation, reverseLayout);
    }

    //重點方法
    @Override
    public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state,
                                       int position) {

        //也就是說重點在于重寫 SmoothScroller,而滑動的調(diào)用為 startSmoothScroll()
        RecyclerView.SmoothScroller smoothScroller = new  TopSnappedSmoothScroller(recyclerView.getContext());
        smoothScroller.setTargetPosition(position);
        startSmoothScroll(smoothScroller);
    }

    private class TopSnappedSmoothScroller extends LinearSmoothScroller {
        public TopSnappedSmoothScroller(Context context) {
            super(context);
        }

        @Override
        public PointF computeScrollVectorForPosition(int targetPosition) {
            return LinearLayoutManagerWithSmoothScroller.this
                    .computeScrollVectorForPosition(targetPosition);
        }

        @Override
        protected int getVerticalSnapPreference() {
            //將指定的 item 滑動至與屏幕的頂端對齊
            return SNAP_TO_START;
        }
    }
}

//使用
recyclerView.smoothScrollToPosition(position);

仔細看可以發(fā)現(xiàn)我們也可以選擇不重寫整個 LinearLayoutManager,只要將 LinearSmoothScroller 的 getVerticalSnapPreference() 重寫也可以達到目的丐箩。

關(guān)于 getVerticalSnapPreference () 的源碼與注釋:

    /**
     * When scrolling towards a child view, this method defines whether we should align the top
     * or the bottom edge of the child with the parent RecyclerView.
     *
     * @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
     * @see #SNAP_TO_START
     * @see #SNAP_TO_END
     * @see #SNAP_TO_ANY
     */
    protected int getVerticalSnapPreference() {
        return mTargetVector == null || mTargetVector.y == 0 ? SNAP_TO_ANY :
                mTargetVector.y > 0 ? SNAP_TO_END : SNAP_TO_START;
    }

返回的值決定了指定 item 的對齊方式摇邦,與頂部對齊 / 底部對齊。
所以最終代碼:

//初始化過程
mLayoutManager= new LinearLayoutManager(getActivity());
mSmoothScroller = new LinearSmoothScroller(getActivity()) {
    @Override protected int getVerticalSnapPreference() {
        return LinearSmoothScroller.SNAP_TO_START;
     }

    @Override
    public PointF computeScrollVectorForPosition(int targetPosition) {
        return mLayoutManager.computeScrollVectorForPosition(targetPosition);
    }
};
mRvRetail.setLayoutManager(mLayoutManager);

//滑動
mSmoothScroller.setTargetPosition(position);
mLayoutManager.startSmoothScroll(mSmoothScroller);
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末屎勘,一起剝皮案震驚了整個濱河市施籍,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌概漱,老刑警劉巖丑慎,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡立哑,警方通過查閱死者的電腦和手機夜惭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來铛绰,“玉大人诈茧,你說我怎么就攤上這事∥骊” “怎么了敢会?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長这嚣。 經(jīng)常有香客問我鸥昏,道長,這世上最難降的妖魔是什么姐帚? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任吏垮,我火速辦了婚禮,結(jié)果婚禮上罐旗,老公的妹妹穿的比我還像新娘膳汪。我一直安慰自己,他們只是感情好九秀,可當(dāng)我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布遗嗽。 她就那樣靜靜地躺著,像睡著了一般鼓蜒。 火紅的嫁衣襯著肌膚如雪痹换。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天都弹,我揣著相機與錄音娇豫,去河邊找鬼。 笑死缔杉,一個胖子當(dāng)著我的面吹牛锤躁,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播或详,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼郭计!你這毒婦竟也來了霸琴?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤昭伸,失蹤者是張志新(化名)和其女友劉穎梧乘,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡选调,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年夹供,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片仁堪。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡哮洽,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出弦聂,到底是詐尸還是另有隱情鸟辅,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布莺葫,位于F島的核電站匪凉,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏捺檬。R本人自食惡果不足惜再层,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望堡纬。 院中可真熱鬧树绩,春花似錦、人聲如沸隐轩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽职车。三九已至瘫俊,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間悴灵,已是汗流浹背闸昨。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留鸭蛙,地道東北人丐一。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像茫孔,于是被迫代替她去往敵國和親叮喳。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容