vivian8725118 / TimeLine
- среда, 14 июня 2017 г. в 03:12:19
Java
瀑布流式的时间轴
This project aims to provide a easy to use Staggered TimeLine implementation.
If you want to use this TimeLine in your project, you have to do the following.
StaggeredGridLayoutManager
to your RecyclerView
mRecyclerView.setLayoutManager(new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL));
ItemDecoration
of this project ItemDecoration.javamRecyclerView.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