Android 使用RecyclerView 实现 tag 展示
作者:互联网
效果图如下:
正常使用 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 的 操作。
标签:google,flexbox,FlexboxLayoutManager,tag,flexboxLayoutManager,Android,RecyclerVie 来源: https://blog.csdn.net/duke_knight/article/details/114829067