/TimeLine

瀑布流式的时间轴

Primary LanguageJava

TimeLine

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

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));
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. ItemDecoration2.java

Example