效果图如下:
正常使用 RecyclerVIEw , 在setmanger的 时候,注意:
1. 使用
implementation 'com.Google.androID:flexBox:2.0.1'
gitHub 地址:https://github.com/google/flexbox-layout
2. activity 中使用:
FlexBoxLayoutManager flexBoxLayoutManager = new FlexBoxLayoutManager(getContext());flexBoxLayoutManager.setFlexDirection(FlexDirection.ROW);//主轴为水平方向,起点在左端。flexBoxLayoutManager.setFlexWrap(FlexWrap.WRAP);//按正常方向换行//justifyContent 属性定义了项目在主轴上的对齐方式。flexBoxLayoutManager.setJustifyContent(JustifyContent.FLEX_START);//交叉轴的起点对齐。tag_vIEw.setLayoutManager(flexBoxLayoutManager);
其他的就是正常的 RecyclerVIEw 的 *** 作。
总结
以上是内存溢出为你收集整理的Android 使用RecyclerView 实现 tag 展示全部内容,希望文章能够帮你解决Android 使用RecyclerView 实现 tag 展示所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)