SnapHelper

一、了解SnapHelper

其實(shí)SnapHelper是對(duì)RecyclerView的一種拓展江掩。

SnapHelper的實(shí)現(xiàn)原理是監(jiān)聽RecyclerView.OnFlingListener中的onFling接口再悼。LinearSnapHelper是抽象類SnapHelper的具體實(shí)現(xiàn)核畴。

通過LinearSnapHelper,可以使RecyclerView實(shí)現(xiàn)類似ViewPager的功能冲九,無論怎么滑動(dòng)最終停留在某頁(yè)正中間。

二跟束、實(shí)現(xiàn)效果

1.自帶LinearSnapHelper實(shí)現(xiàn)

可以將某頁(yè)自動(dòng)居中莺奸。

LinearSnapHelper  mLinearSnapHelper=new LinearSnapHelper();

mLinearSnapHelper.attachToRecyclerView(mRecyclerView);

2.自定義SnapHelper實(shí)現(xiàn)

比如,左對(duì)齊冀宴。

SnapHelper是一個(gè)抽象類灭贷,直接繼承需要實(shí)現(xiàn)的三個(gè)方法:

  1. 當(dāng)拖拽或滑動(dòng)結(jié)束時(shí)會(huì)回調(diào)該方法,返回一個(gè)out = int[2]略贮,out[0]x軸甚疟,out[1] y軸 ,這個(gè)值就是需要修正的你需要的位置的偏移量
public abstract int[] calculateDistanceToFinalSnap(@NonNull LayoutManager layoutManager, @NonNull View targetView);
  1. 上面方法有一個(gè)targetView吧 就是這個(gè)方法返回的
public abstract View findSnapView(LayoutManager layoutManager);
  1. 用于Fling逃延,根據(jù)速度返回你要滑到的position
public abstract int findTargetSnapPosition(LayoutManager layoutManager, int velocityX, int velocityY);

我們不直接繼承SnapHelper览妖,而是繼承他的實(shí)現(xiàn)類LinearSnapHelper


public  class  MySnapHelper  extends  LinearSnapHelper   {

  privateOrientationHelper mHorizontalHelper;

  @Nullable

  @Override

  public  int[]  calculateDistanceToFinalSnap (RecyclerView.LayoutManager layoutManager, View targetView) {

    int[] out =newint[2];

    if(layoutManager.canScrollHorizontally()) {

      out[0] = distanceToStart(targetView, getHorizontalHelper(layoutManager));

    }else{

      out[0] =0;

    }return out;

  }

  private  int  distanceToStart(View targetView, OrientationHelper helper) {

    return  helper.getDecoratedStart(targetView) - helper.getStartAfterPadding();

  }

  @Nullable

  @Override  public  View  findSnapView(RecyclerView.LayoutManager layoutManager) {

    return   findStartView(layoutManager, getHorizontalHelper(layoutManager));

  }

  private  View  findStartView(RecyclerView.LayoutManager layoutManager,OrientationHelper helper) {

    if(layoutManagerinstanceofLinearLayoutManager) {

      intfirstChild = ((LinearLayoutManager) layoutManager).findFirstVisibleItemPosition();

      intlastChild = ((LinearLayoutManager) layoutManager).findLastVisibleItemPosition();

      if(firstChild == RecyclerView.NO_POSITION) {

        return  null;

      }  if(lastChild == layoutManager.getItemCount() -1) {

            return  layoutManager.findViewByPosition(lastChild);

         }

     View child = layoutManager.findViewByPosition(firstChild);

     if(helper.getDecoratedEnd(child) >= helper.getDecoratedMeasurement(child) /2&& helper.getDecoratedEnd(child) >0) {

        return  child;

      }  else{

          return  layoutManager.findViewByPosition(firstChild +1);

      }

    }
     return  super.findSnapView(layoutManager);

  }

  private   OrientationHelpergetHorizontalHelper(

  @NonNull

  RecyclerView.LayoutManager layoutManager) {

    if(mHorizontalHelper ==null) {

      mHorizontalHelper = OrientationHelper.createHorizontalHelper(layoutManager);

    }  return  mHorizontalHelper;

  }

}

這里有幾點(diǎn)需要特別注意一下,

第11~24行:我們只考慮橫向左對(duì)齊揽祥,所以只要處理out[0]的值讽膏,distanceToStart()方法返回修正的偏移量。

第41~43行:這是為了解決當(dāng)翻到最后一頁(yè)的時(shí)候拄丰,最后一個(gè)Item不能完整顯示的問題(不信府树,你可以注釋了試試就知道啦)俐末。

if(lastChild == layoutManager.getItemCount() -1) {
  returnlayoutManager.findViewByPosition(lastChild);           
}

第47~52行:得到此時(shí)需要左對(duì)齊顯示的條目

if(helper.getDecoratedEnd(child) >= helper.getDecoratedMeasurement(child) /2
    && helper.getDecoratedEnd(child) >0) {              
      return  child;
}  else{
    return  la youtManager.findViewByPosition(firstChild +1);
}

最后只要用上我們自己的SnapHelper,就可以輕松搞定了奄侠。

MySnapHelper mMySnapHelper=new MySnapHelper();

mMySnapHelper.attachToRecyclerView(mRecyclerView);

已經(jīng)實(shí)現(xiàn)的庫(kù):https://github.com/rubensousa/RecyclerViewSnap

參考文章:http://blog.csdn.net/whitley_gong/article/details/52421215

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末卓箫,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子垄潮,更是在濱河造成了極大的恐慌丽柿,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,123評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件魂挂,死亡現(xiàn)場(chǎng)離奇詭異甫题,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)涂召,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門坠非,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人果正,你說我怎么就攤上這事炎码。” “怎么了秋泳?”我有些...
    開封第一講書人閱讀 156,723評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵潦闲,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我迫皱,道長(zhǎng)歉闰,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,357評(píng)論 1 283
  • 正文 為了忘掉前任卓起,我火速辦了婚禮和敬,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘戏阅。我一直安慰自己昼弟,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,412評(píng)論 5 384
  • 文/花漫 我一把揭開白布奕筐。 她就那樣靜靜地躺著舱痘,像睡著了一般。 火紅的嫁衣襯著肌膚如雪离赫。 梳的紋絲不亂的頭發(fā)上芭逝,一...
    開封第一講書人閱讀 49,760評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音笆怠,去河邊找鬼铝耻。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的瓢捉。 我是一名探鬼主播频丘,決...
    沈念sama閱讀 38,904評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼泡态!你這毒婦竟也來了搂漠?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,672評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤某弦,失蹤者是張志新(化名)和其女友劉穎桐汤,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體靶壮,經(jīng)...
    沈念sama閱讀 44,118評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡怔毛,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,456評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了腾降。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片拣度。...
    茶點(diǎn)故事閱讀 38,599評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖螃壤,靈堂內(nèi)的尸體忽然破棺而出抗果,到底是詐尸還是另有隱情,我是刑警寧澤奸晴,帶...
    沈念sama閱讀 34,264評(píng)論 4 328
  • 正文 年R本政府宣布冤馏,位于F島的核電站,受9級(jí)特大地震影響寄啼,放射性物質(zhì)發(fā)生泄漏逮光。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,857評(píng)論 3 312
  • 文/蒙蒙 一辕录、第九天 我趴在偏房一處隱蔽的房頂上張望睦霎。 院中可真熱鬧,春花似錦走诞、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至戴陡,卻和暖如春塞绿,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背恤批。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評(píng)論 1 264
  • 我被黑心中介騙來泰國(guó)打工异吻, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,286評(píng)論 2 360
  • 正文 我出身青樓诀浪,卻偏偏與公主長(zhǎng)得像棋返,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子雷猪,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,465評(píng)論 2 348

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