RecyclerView.ItemDecoration实现列表时间轴

写此文章主要用于笔记,因为本人忘性比较大,实现过的东西大多记不住,之后又会费时重新实现,现决定养成好习惯,把不常实现的功能,以及不常用的知识点都记录下来。

第一篇要记录一下Recyclerview.ItemDecoration功能(个人理解为子类修饰功能,各位看官有专业术语的,就当我抛砖引玉了)。
写在前面——用法很简单,创建类继承RecyclerView.ItemDecoration,对布局重新设置之后通过RecyclverView的addItemDecoration(Context context)方法即可。

实现图如下

Screenshot_20190531-144929.jpg
image

解释一下:1.getItemOffsets()

本次实现时间轴主要方法,对于它的作用,解释的通俗点可以理解为子布局的推移效果(RecyclerView是继承ViewGroup的所以我说子布局)


   @Override
    public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
        super.getItemOffsets(outRect, view, parent, state);
        //重中之重,时间轴实现的核心,可以理解为,在某一个方向将子布局推移
        //参数含义:相对于父布局左偏移,上偏移,右偏移,下偏移 (个人理解:变相margin值)
        outRect.set(itemView_leftinterval,0,0,0);
    }

2.OnDraw()

这个就很简单了,不解释。

在此感谢Carson_Ho大神提供的学习资料。下面贴出全部代码,如有需要的小伙伴拿走不谢,对于代码质量有更好建议的,欢迎提出来,共同进步。

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Rect;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import com.example.myapplication.R;

/**
 * Create By MR.D
 * 我珍惜一眼而过的青春,才如此疯狂的面对未来。
 * 2019/5/30
 * USE: Recyclerview时间轴(2)
 **/
public class DividerItemDecoration extends RecyclerView.ItemDecoration {


    private int circle_radius;
    private Paint paint;
    private int itemView_leftinterval;
    private int icon_width;
    private Bitmap bitmap;
    private Context context;
    public DividerItemDecoration(Context context) {
        this.context = context;
        paint = new Paint();
        //画笔颜色:#FFD7D7D7
        paint.setColor(context.getResources().getColor(R.color.gray));
        //设置画笔宽度,可用于修改轴的宽度
        paint.setStrokeWidth(dip2px(context,2));
        //获取图片
        bitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.time_icon);
        //矩形左侧偏移量px
        itemView_leftinterval = 150;
        //最后一个圆点的半径
        circle_radius = dip2px(context,5);
        //图标所在正方形宽高(一半)
        icon_width = dip2px(context,8);
    }

    @Override
    public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
        super.getItemOffsets(outRect, view, parent, state);
        //重中之重,时间轴实现的核心,可以理解为,在某一个方向将子布局推移
        //参数含义:相对于父布局左偏移,上偏移,右偏移,下偏移 (个人理解:变相margin值)
        outRect.set(itemView_leftinterval,0,0,0);
    }

    @Override
    public void onDraw(@NonNull Canvas c, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
        super.onDraw(c, parent, state);
        c.drawColor(context.getResources().getColor(R.color.white));
        int childCount = parent.getChildCount();
        //遍历子布局,为每一个子布局进行绘制
        for(int i = 0;i<childCount;i++){
            View child = parent.getChildAt(i);
            //下面两个参数是计算我们的矩形相对于父布局所在位置
            int centerx = child.getLeft() - itemView_leftinterval / 2;
            int centery = child.getTop() + child.getHeight() / 2;
            //计算图标展示的正方形大小(相对于父布局位置)
            Rect rect = new Rect(centerx-icon_width, centery-icon_width
                    , centerx+icon_width, centery+icon_width);

            /**
             * 上半轴绘制
             */
            //上端点坐标(X,Y)
            float upLine_up_x = centerx;
            float upLine_up_y = child.getTop();
            //下端点坐标(X,Y)
            float upLine_bottom_x = centerx;
            float upLine_bottom_y = centery - icon_width;

            /**
             * 如果是最后一个item绘制上半轴需要加长
             */
            //上端点坐标(X,Y)
            float upLine_last_up_x = centerx;
            float upLine_last_up_y = child.getTop();
            //下端点坐标(X,Y)
            float upLine_last_bottom_x = centerx;
            float upLine_last_bottom_y = centery - circle_radius;

            /**
             * 下半轴绘制
             */
            //上端点(X,Y)
            float bottomLine_up_x = centerx;
            float bottom_up_y = centery + icon_width;
            //下端点(X,Y)
            float bottomLine_bottom_x = centerx;
            float bottomLine_bottom_y = child.getBottom();

            //顶部不绘制上端线,底部不绘制下端线且改变图标为实心圆
            int index = parent.getChildAdapterPosition(child);
            if(index == 0){
                c.drawBitmap(bitmap,null,rect,paint);
                c.drawLine(bottomLine_up_x,bottom_up_y,bottomLine_bottom_x,bottomLine_bottom_y,paint);
            }else if(index + 1 == childCount){
                c.drawCircle(centerx,centery,circle_radius,paint);
                c.drawLine(upLine_last_up_x,upLine_last_up_y,upLine_last_bottom_x,upLine_last_bottom_y,paint);
            }else{
                c.drawBitmap(bitmap,null,rect,paint);
                c.drawLine(upLine_up_x,upLine_up_y,upLine_bottom_x,upLine_bottom_y,paint);
                c.drawLine(bottomLine_up_x,bottom_up_y,bottomLine_bottom_x,bottomLine_bottom_y,paint);
            }
        }
    }


    /**
     * dp->px
     */
    public static int dip2px(Context context, float dpValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (dpValue * scale + 0.5f);
    }
}

适配器代码如下

        RecyclerView timeRc = findViewById(R.id.timeRc);
        timeRc.setLayoutManager(new LinearLayoutManager(TimeDamoActivity.this));
        timeRc.setHasFixedSize(true);
        timeRc.addItemDecoration(new DividerItemDecoration(this));
        timeRc.setAdapter(new TimeRcAdapter(R.layout.recyclerview_list_layout,list));

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容