瀑布流式的时间轴

TimeLine

项目地址:vivian8725118/TimeLine 

简介:瀑布流式的时间轴

更多:作者   提 Bug   

标签:

 

This project aims to provide a easy way to use Staggered TimeLine implementation.

中文版文档

Provide the gradle dependency

  implementation 'com.vivian.widgets:TimeLineItemDecoration:1.5'

Usage

If you want to use this TimeLine in your project, you have to do the following.

  • Set the StaggeredGridLayoutManager to your RecyclerView

    mRecyclerView.setLayoutManager(new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL));
    
  • Use the ItemDecoration of this project ItemDecoration.java

    mRecyclerView.addItemDecoration(new ItemDecoration(this, 100));
    

    The second ctor-parameter will define the distance. In that case 100px.

Currently there are 2 styles available, as seen in the Screenshots. You can find the implementation for the second style here. DotItemDecoration.java

DotItemDecoration mItemDecoration = new DotItemDecoration
                .Builder(this)
                .setOrientation(DotItemDecoration.VERTICAL)//if you want a horizontal item decoration,remember to set horizontal orientation to your LayoutManager
                .setItemStyle(DotItemDecoration.STYLE_DRAW)//choose to draw or use resource
                .setTopDistance(20)//dp
                .setItemInterVal(10)//dp
                .setItemPaddingLeft(10)//default value equals to item interval value
                .setItemPaddingRight(10)//default value equals to item interval value
                .setDotColor(Color.WHITE)
                .setDotRadius(2)//dp
                .setDotPaddingTop(0)
                .setDotInItemOrientationCenter(false)//set true if you want the dot align center
                .setLineColor(Color.RED)//the color of vertical line
                .setLineWidth(1)//dp
                .setEndText("END")//set end text
                .setTextColor(Color.WHITE)
                .setTextSize(10)//sp
                .setDotPaddingText(2)//dp.The distance between the last dot and the end text
                .setBottomDistance(40)//you can add a distance to make bottom line longer
                .create();

if you want to do something according to the column of span,implements SpanIndexListener of this project SpanIndexListener.

mItemDecoration.setSpanIndexListener(new SpanIndexListener() {
        @Override
        public void onSpanIndexChange(View view, int spanIndex) {
           view.setBackgroundResource(spanIndex == 0 ? R.drawable.pop_left : R.drawable.pop_right);
        }
});

Example

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值