使用 TableLayout 跨列
TableLayout 的文档中说“单元格可以跨列,就像在 HTML 中一样。”但是,我找不到任何方法可以做到这一点。
具体来说,我有一行有两列,另一行有一列。我希望一列行跨越整个表格。看起来很容易,但我看不到。
Possible Duplicate:
What is the equivalent of “colspan” in an Android TableLayout?
It says in the documentation for TableLayout "Cells can span columns, as they can in HTML." However, I can't find any way to do so.
Specifically, I have one row with two columns and another with one column. I want the one column row to span the entire table. Seems easy, but I don't see it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加 android:layout_span="3" 以跨越 3 列。
例如:
add android:layout_span="3" to span 3 columns.
For example:
android:layout_span 可以解决这个问题。
例子:
android:layout_span does the trick.
example: