我需要有关表布局单元格内的 android ROWSPAN 和 LIStACTIVITY 的帮助
对于特定布局,我需要在最左列跨越多行。在 1 列中,我希望文本垂直书写,并且它至少跨越 4 到 5 行,并包含相同的文本。
请建议相关的sml或java代码。 内尔梅恩·纳西姆
I need to span multiple rows at the left most column for a particular layout. in 1 column i want text to be written verticdally and it spans atleast 4 to 5 rows with the same text.
Kindly suggest relevant sml or java code.
Nermeen Nasim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TableLayout
没有“rowspan”概念。除了TableLayout
之外,您还需要使用其他容器来设计 UI,或者可能代替TableLayout
。There is no "rowspan" concept with
TableLayout
. You will need to design your UI using other containers in addition to, or perhaps instead of,TableLayout
.我会尝试使用 GridLayout 来代替,您可以告诉视图属性:android:layout_rowSpan 和 android:layout_columnSpan。
为我工作。
I would try to use GridLayout instead, you can tell the views the properties: android:layout_rowSpan and android:layout_columnSpan.
Worked for me.