github

vivian8725118 / TimeLine

  • среда, 14 июня 2017 г. в 03:12:19
https://github.com/vivian8725118/TimeLine

Java
瀑布流式的时间轴



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