如何在不使用xml的情况下在表行中添加两个方向垂直的文本视图(一个在另一个下面)?
我想在表行中添加两个方向垂直的文本视图(一个在另一个下面),而不使用以编程方式使用的 xml。谁能建议我该怎么做?除了这个还有别的办法吗?表行中已经有许多文本视图(水平)。
I want add two textview with orientation vertical(One below other) in a table row without using xml that is by programatically. Can anyone suggest me how to do this? Is there any other way than this? Already there are many textviews in a tablerow(horizontally).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
LinearLayout
放入TableRow
单元格中。将两个TextView
小部件放入LinearLayout
中。使用 Java 构造函数创建LinearLayout
和TextView
小部件。使用addView()
将TextView
小部件添加到LinearLayout
。Put a
LinearLayout
in theTableRow
cell. Put the twoTextView
widgets in theLinearLayout
. Use Java constructors to create theLinearLayout
and theTextView
widgets. UseaddView()
to add theTextView
widgets to theLinearLayout
.