gpt4 book ai didi

android - 如何创建屏幕空间已满时自动换行的水平 RecyclerView?

转载 作者:行者123 更新时间:2023-12-04 18:03:07 24 4
gpt4 key购买 nike

我正在尝试使用 RecyclerView 在我的应用程序中以编程方式显示标签。它会像这样(抱歉,我现在无法将图像上传到 stackoverflow)

http://anh.im/image/OUA

那么,我如何创建从左到右显示我的内容的 RecyclerView 并在 RecyclerView 的右边缘自动换行看起来像图像并防止它水平滚动?感谢您的帮助!

最佳答案

使用实现“com.google.android:flexbox:1.0.0”

只需添加到您的回收站

 val decoration = DividerItemDecoration(context, RecyclerView.HORIZONTAL)
decoration.setDrawable(ContextCompat.getDrawable(context, R.drawable.divider_10dp)!!)
recyclerViewSelectionList.addItemDecoration(decoration)
val layoutManager = FlexboxLayoutManager(this)
layoutManager.flexDirection = FlexDirection.ROW
layoutManager.justifyContent = JustifyContent.FLEX_START
recyclerViewSelectionList.layoutManager = layoutManager

关于android - 如何创建屏幕空间已满时自动换行的水平 RecyclerView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31744921/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com