RecyclerView自定義分割線

最近一直在看RecyclerView主巍,較之ListView它確實(shí)是靈活多變您市,給予開發(fā)者更多自定義的空間,比如:需要添加頭部和尾部、item的點(diǎn)擊事件段化、自定義的LayoutManager嘁捷,還有就是下面要說的自定義的分割線。


1显熏、如何理解分割線

經(jīng)常聽到有人說自定義分割線麻煩雄嚣,為什么不把分割線寫到item布局里,這樣不是更簡(jiǎn)單嗎喘蟆?有些情況把分割線寫到item布局里是很難達(dá)到我們想要的效果现诀,例如RecyclerView里的GridLayoutManager,StaggeredGridLayoutManager和一些自定義的LayoutManager,不同位置的item需要畫的分割線并不相同履肃,這時(shí)候應(yīng)用自定義的分割線就能很好的解決這個(gè)問題仔沿。


2、如何畫分割線

網(wǎng)上也有很多關(guān)于RecyclerView自定義分割線的寫法尺棋,很多都是通過獲取系統(tǒng)屬性中的listDivider來添加封锉,在系統(tǒng)中的AppTheme中設(shè)置,但是如果我有兩種風(fēng)格的分割線膘螟,這就尷尬了呀成福,所以我希望像ListView一樣能傳入一個(gè)drawable來設(shè)置分割線,所以我們的思路就是最終能像下面這樣設(shè)置分割線:

rvStore.addItemDecoration(new CustomDecoration(context,CustomDecoration.VERTICAL_LIST,R.drawable.divider_love,UnitHelper.dip2px(this,15)))

3荆残、具體代碼實(shí)現(xiàn)

由于RecyclerView的布局方式多種多樣奴艾,所以它的分割線也根據(jù)布局的不同有所差異,本文只針對(duì)LinearLayoutManager線性布局

  • 繼承自RecyclerView.ItemDecoration
  • 重寫getItemOffsets()内斯、 onDraw()方法
    現(xiàn)在給出完整的類蕴潦,代碼中關(guān)鍵地方都有注釋,就不再一一說明:
public class CustomDecoration extends RecyclerView.ItemDecoration {

    public static final int HORIZONTAL_LIST = LinearLayoutManager.HORIZONTAL;

    public static final int VERTICAL_LIST = LinearLayoutManager.VERTICAL;

    private Drawable mDivider;

    private int mOrientation;

    /**
     * 分割線縮進(jìn)值
     */
    private int inset;

    private Paint paint;

    /**
     * @param context
     * @param orientation layout的方向
     * @param drawable    引入的drawable的ID
     * @param inset       分割線縮進(jìn)值
     */
    public CustomDecoration(Context context, int orientation, int drawable, int inset) {
        mDivider = context.getResources().getDrawable(drawable);
        this.inset = inset;
        paint = new Paint();
        paint.setColor(context.getResources().getColor(R.color.white));
        paint.setStyle(Paint.Style.FILL);
        paint.setAntiAlias(true);
        setOrientation(orientation);
    }

    public void setOrientation(int orientation) {
        if (orientation != HORIZONTAL_LIST && orientation != VERTICAL_LIST) {
            throw new IllegalArgumentException("invalid orientation");
        }
        mOrientation = orientation;
    }

    @Override
    public void onDraw(Canvas c, RecyclerView parent) {
        if (mOrientation == VERTICAL_LIST) {
            drawVertical(c, parent);
        } else {
            drawHorizontal(c, parent);
        }
    }

    private void drawVertical(Canvas c, RecyclerView parent) {
        final int left = parent.getPaddingLeft();
        final int right = parent.getWidth() - parent.getPaddingRight();

        final int childCount = parent.getChildCount();
        //最后一個(gè)item不畫分割線
        for (int i = 0; i < childCount - 1; i++) {
            final View child = parent.getChildAt(i);
            final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
            final int top = child.getBottom() + params.bottomMargin;
            final int bottom = top + mDivider.getIntrinsicHeight();
            if (inset > 0) {
                c.drawRect(left, top, right, bottom, paint);
                mDivider.setBounds(left + inset, top, right - inset, bottom);
            } else {
                mDivider.setBounds(left, top, right, bottom);
            }
            mDivider.draw(c);
        }
    }

    private void drawHorizontal(Canvas c, RecyclerView parent) {
        final int top = parent.getPaddingTop();
        final int bottom = parent.getHeight() - parent.getPaddingBottom();

        final int childCount = parent.getChildCount();
        for (int i = 0; i < childCount - 1; i++) {
            final View child = parent.getChildAt(i);
            final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
            final int left = child.getRight() + params.rightMargin;
            final int right = left + mDivider.getIntrinsicHeight();
            mDivider.setBounds(left, top, right, bottom);
            mDivider.draw(c);
        }
    }

    //由于Divider也有寬高俘闯,每一個(gè)Item需要向下或者向右偏移
    @Override
    public void getItemOffsets(Rect outRect, int itemPosition, RecyclerView parent) {
        if (mOrientation == VERTICAL_LIST) {
            outRect.set(0, 0, 0, mDivider.getIntrinsicHeight());
        } else {
            outRect.set(0, 0, mDivider.getIntrinsicWidth(), 0);
        }
    }
}

4潭苞、具體怎么用

  • RecyclerView的三部曲

recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.addItemDecoration(new CustomDecoration(this, CustomDecoration.VERTICAL_LIST, R.drawable.divider_love, UnitHelper.dip2px(this, 15)));
recyclerView.setAdapter(adapter);

- R.drawable.divider_love
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
   android:shape="rectangle">
   <solid android:color="#CB8589"/>
   <size android:height="15dp"/>
</shape>

對(duì)應(yīng)的效果如下:

1.png

我們可以看到明顯的縮進(jìn)效果,設(shè)置成零就沒有縮進(jìn)了真朗。


  • 還是看看正常使用中是什么樣子吧
2.png

對(duì)應(yīng)的 R.drawable.divider_love

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#CD3131"/>
    <size android:height="1dp"/>
</shape>

我們只需要修改下CustomDecoration中paint的顏色就可以讓縮進(jìn)的顏色和背景色一致了此疹,默認(rèn)是白色。

paint.setColor(Color.parseColor("#ECF0F1"));
  • That's all遮婶。
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末蝗碎,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子旗扑,更是在濱河造成了極大的恐慌蹦骑,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肩豁,死亡現(xiàn)場(chǎng)離奇詭異脊串,居然都是意外死亡辫呻,警方通過查閱死者的電腦和手機(jī)清钥,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門琼锋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人祟昭,你說我怎么就攤上這事缕坎。” “怎么了篡悟?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵谜叹,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我搬葬,道長(zhǎng)荷腊,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任急凰,我火速辦了婚禮女仰,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘抡锈。我一直安慰自己疾忍,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布床三。 她就那樣靜靜地躺著一罩,像睡著了一般。 火紅的嫁衣襯著肌膚如雪撇簿。 梳的紋絲不亂的頭發(fā)上聂渊,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音四瘫,去河邊找鬼歧沪。 笑死吱涉,一個(gè)胖子當(dāng)著我的面吹牛茸歧,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播睦授,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼锹杈,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼撵孤!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起竭望,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤邪码,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后咬清,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體闭专,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡奴潘,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了影钉。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片画髓。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖平委,靈堂內(nèi)的尸體忽然破棺而出奈虾,到底是詐尸還是另有隱情,我是刑警寧澤廉赔,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布肉微,位于F島的核電站,受9級(jí)特大地震影響蜡塌,放射性物質(zhì)發(fā)生泄漏碉纳。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一馏艾、第九天 我趴在偏房一處隱蔽的房頂上張望劳曹。 院中可真熱鬧,春花似錦攒至、人聲如沸厚者。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽库菲。三九已至,卻和暖如春志膀,著一層夾襖步出監(jiān)牢的瞬間熙宇,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工溉浙, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留烫止,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓戳稽,卻偏偏與公主長(zhǎng)得像馆蠕,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子惊奇,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

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