android 代码中的表格行和列

发布于 2024-10-16 16:21:13 字数 177 浏览 2 评论 0原文

我正在尝试创建一个带有动态添加的行和列(来自对象数组)的 TableLayout 。因为它是动态的,所以我必须编码(?)

我能找到的所有示例都是使用 xml 布局来实现的。唯一在代码中执行此操作的仅添加一个视图,例如按钮,这让我相信它不可行,并且我至少需要两列,其中一列将包含带有图像和文本的视图。

I'm trying to create a TableLayout with dynamically added rows and columns (from an array of obbjects). Since it's dynamic must I code(?)

All the examples I can find is doing it using xml layouts. The only ones out there that does it in code only adds a single view, like a button, which makes me believe its not doable, and I need two columns at least, where one of the will contain a view with an image and text.

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

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

发布评论

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

评论(1

一个人的夜不怕黑 2024-10-23 16:21:13

尝试创建表和行,执行类似的操作

TableLayout t=new TableLayout(this);
TableRow tr=new TableRow(this);

,并使用表添加行,

t.addView(tr);

类似地,您可以使用 addView() 函数添加其他视图(文本、图像视图等)

Try to create table and row doing something like this

TableLayout t=new TableLayout(this);
TableRow tr=new TableRow(this);

and add row with table by

t.addView(tr);

similarly you can add other view (text, image view etc.) by using addView() function

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文