动态添加视图到表行

发布于 2024-10-14 14:41:20 字数 172 浏览 3 评论 0原文

伙计们 我想知道表行的长度。

在我的应用程序中,视图是动态创建的并添加到表格布局中......并且它没有出现任何问题。

但是,如果行的长度比屏幕的宽度长(因为行中包含太多视图),我在屏幕上看不到某些视图。

您知道如何在屏幕上实际显示该行之前检查它吗?

感谢您的帮助。

guys
I am wondering about the lenght of a table row.

In my application, views are dynamically created and added to tablelayout...and it gives no problems.

However, if the length of row is longger than the width of screen(since too many views are contained on the row), I can't see some of views on screen.

Do you know how to check it in prior to actually display the row on screen?

Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无所谓啦 2024-10-21 14:41:20

您可以使用 tableRow 属性并动态更改其高度和宽度

TableRow tableRow = findViewById(R.id.tableRow1);
tableRow.setMinimumHeight(minHeight);
tableRow.setMinimumWidth(minWidth);
tableRow.setWeightSum(weightSum);

You can use the tableRow attributes and change the height and width of it dynamically

TableRow tableRow = findViewById(R.id.tableRow1);
tableRow.setMinimumHeight(minHeight);
tableRow.setMinimumWidth(minWidth);
tableRow.setWeightSum(weightSum);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文