- 线性布局
layout = new LinearLayoutManager(this)
- 网格布局
layout = new GridLayoutManager(this,4)
- 交错网络布局(纵向几排)
layout = new StaggeredGridLayoutManager(4,StaggeredGridLayoutManager.VERTICAL));
- 交错网络布局(横向几列)
layout = new StaggeredGridLayoutManager(4,StaggeredGridLayoutManager.HORIZONTAL));
- 自带上下拉刷新
- 自带添加头部尾部View
-
采用提供的多种刷新样式或自定义刷新样式