是否有某种方法可以设置LinearLayout
或ConstraintLayout
来将尽可能多的视图放入线性链,并在并非所有视图都适合当前行时立即开始新的行?
喜欢以下内容:
Item1 - Item2 - Item3 - Item4
Item5 - Item6 - Item7 - Item8
Item9 - Item10
或在更大的屏幕上
Item1 - Item2 - Item3 - Item4 - Item5
Item6 - Item7 - Item8 - Item9 - Item10
据我所知LinearLayout
根本无法做到这一点,并且ConstraintLayout
不支持链中的此类换行符。
还有其他方法可以得到我想要的东西吗? (不是以编程方式计算可用空间,而是将LinearLayouts
放在父LinearLayout
容器中,我知道该怎么做-我正在寻找更漂亮的解决方案)。