我们可以在Android中动态创建带边框的表格吗

发布于 2024-11-06 08:26:10 字数 142 浏览 1 评论 0原文

我正在尝试使用 TableLayout 创建一个带边框的表格。如果我在 xml 文件中添加静态行,我就可以看到边框。但如果我尝试添加一些动态行,就会出现问题。表的数据是动态生成的。任何人都可以帮助解决这个问题。如果可能,请提供源代码(.java 文件和.xml 文件)。

Iam trying to create a table with borders using TableLayout. If I add static rows in xml file i am able to see the borders. But the problem arises if I try to add some dynamic rows. Data for the table comes dynamically. Can anyone help in solving this problem. If possible please provide the source code(.java file and .xml file).

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

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

发布评论

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

评论(1

Spring初心 2024-11-13 08:26:10

您可以创建一个矩形图像用作该行的背景。 TableRow 扩展了 View,所以这应该可以工作(未经测试)。

TableRow row = new TableRow (this);
row.setBackgroundResource (android.R.drawable.edit_text);
// rest of your code

如果它不起作用,(经过测试的)解决方案是向表格添加彩色背景并向行添加填充。

You can create a rectangle image to use as a background for the row. TableRow extends View, so this should work (untested).

TableRow row = new TableRow (this);
row.setBackgroundResource (android.R.drawable.edit_text);
// rest of your code

If it doesn't work, the (tested) solution is to add a color background to the table and padding to the row.

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