Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 android flexboxlayout 来实现这样的 UI:
将一些项目放在一个布局中,每行有 3 个项目。我没有找到一种方法来控制每行中的项目数。有人可以帮忙吗?
非常感谢!
使用带有网格布局管理器的回收器视图代替 Flexbox 布局。例如:
recyclerView.setLayoutManager(new GridLayoutManager(this,3));