實現(xiàn)recyclerView點擊item聯(lián)動滑動居中

在實際開發(fā)尤其是電商項目的開發(fā)過程中瓶珊,經(jīng)常會用到分類的橫向滑動列表蚤吹,但是如果用普通的橫向列表在點擊的過程無法直接展示,這里我們就需要做到點擊每一個item去聯(lián)動滑動顯示在可視化的界面中,直接上效果

所需效果圖
import android.content.Context;
import android.util.DisplayMetrics;

import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.LinearSmoothScroller;
import androidx.recyclerview.widget.RecyclerView;

/**
 * Create by Carson on 2021/8/18.
 * 自定義recyclerView點擊item滑動居中
 */
public class CenterLayoutManager extends LinearLayoutManager {

    static int lastPosition = 0;
    static int targetPosition = 0;

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

    @Override
    public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, int position) {
        CenterSmoothScroller smoothScroller = new CenterSmoothScroller(recyclerView.getContext());
        smoothScroller.setTargetPosition(position);
        startSmoothScroll(smoothScroller);
    }

    public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, int lastPosition, int position) {
        CenterLayoutManager.lastPosition = lastPosition;
        CenterLayoutManager.targetPosition = position;
        smoothScrollToPosition(recyclerView, state, position);
    }

    public static class CenterSmoothScroller extends LinearSmoothScroller {
        private static float duration = 400f;

        public CenterSmoothScroller(Context context) {
            super(context);
        }

        @Override
        public int calculateDtToFit(int viewStart, int viewEnd, int boxStart, int boxEnd, int snapPreference) {
            return (boxStart + (boxEnd - boxStart) / 2) - (viewStart + (viewEnd - viewStart) / 2);
        }

        @Override
        protected float calculateSpeedPerPixel(DisplayMetrics displayMetrics) {
            float newDuration = duration / (Math.abs(targetPosition - lastPosition));
            return newDuration / displayMetrics.densityDpi;
        }

        @Override
        protected int calculateTimeForScrolling(int dx) {
            return super.calculateTimeForScrolling(dx);
        }
    }
}

接下來就是在adapter中進(jìn)行引用了

CenterLayoutManager centerLayoutManager =
        new CenterLayoutManager(mContext, LinearLayoutManager.HORIZONTAL, false);
binding.recyclerTabSort.setLayoutManager(centerLayoutManager);
//這里省略adapter布局的方法
...
...
...
tabSortAdapter.setOnItemClickListener((adapter, view, position) -> {
    centerLayoutManager.smoothScrollToPosition(binding.recyclerTabSort,
            new RecyclerView.State(), indexPosition, position);
    if (indexPosition != position) {
        indexPosition = position;
    }
    tabSortAdapter.notifyDataSetChanged();
});
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市芒帕,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌丰介,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件鉴分,死亡現(xiàn)場離奇詭異哮幢,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)志珍,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進(jìn)店門橙垢,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人伦糯,你說我怎么就攤上這事柜某∷栽” “怎么了?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵喂击,是天一觀的道長剂癌。 經(jīng)常有香客問我,道長翰绊,這世上最難降的妖魔是什么佩谷? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮监嗜,結(jié)果婚禮上谐檀,老公的妹妹穿的比我還像新娘。我一直安慰自己裁奇,他們只是感情好桐猬,可當(dāng)我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著刽肠,像睡著了一般溃肪。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上五垮,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天乍惊,我揣著相機(jī)與錄音,去河邊找鬼放仗。 笑死润绎,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的诞挨。 我是一名探鬼主播莉撇,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼惶傻!你這毒婦竟也來了棍郎?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤银室,失蹤者是張志新(化名)和其女友劉穎涂佃,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蜈敢,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡辜荠,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了抓狭。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片伯病。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖否过,靈堂內(nèi)的尸體忽然破棺而出午笛,到底是詐尸還是另有隱情惭蟋,我是刑警寧澤,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布药磺,位于F島的核電站告组,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏与涡。R本人自食惡果不足惜惹谐,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望驼卖。 院中可真熱鬧氨肌,春花似錦、人聲如沸酌畜。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽桥胞。三九已至恳守,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間贩虾,已是汗流浹背催烘。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留缎罢,地道東北人伊群。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像策精,于是被迫代替她去往敵國和親舰始。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,802評論 2 345

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