Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 1.05 KB

README.md

File metadata and controls

14 lines (10 loc) · 1.05 KB

RecyclerItemDecoration

recyclerView使用的一些辅助类

比如实现九宫格呢或者全部展开的List等:关键类LinearItemDecorationration、GridLayoutItemDecoration、FullyGridLayoutManager、FullLinearlayoutManager

#使用全展开的recyclerview时注意,不要获取焦点,防止自动滚动

  mRecyclerView.setFocusable(false);

     mRecyclerView.setNestedScrollingEnabled(false);(根据需求灵活使用)