表格布局调整。是否可以?
我有一个包含五列和许多行且包含动态内容的表格布局。
我们注意到每一列的宽度都是该列所有单元格的最大值。
我不想水平滚动,但我想检测何时超出总宽度,以便我可以删除其中一列。
这可能吗?
I have a table layout with five columns and many rows with dynamic content.
We notice that each column takes the width of the maximum of all cells of that column.
I do not want horizontal scrolling but I want to detect when the total width has been exceeded so I can remove one of the columns.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以自己在 TableLayout 上调用measure(),并使用 getMeasuredWidth/Height 检查结果。
You could call measure() on the TableLayout yourself and check the result with getMeasuredWidth/Height.
如果您要在循环中添加每一行,那么我想您可以执行以下操作:
If you are adding each row in a loop, then I guess you could do something like: