我们可以在Android中动态创建带边框的表格吗
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个矩形图像用作该行的背景。
TableRow
扩展了View
,所以这应该可以工作(未经测试)。如果它不起作用,(经过测试的)解决方案是向表格添加彩色背景并向行添加填充。
You can create a rectangle image to use as a background for the row.
TableRow
extendsView
, so this should work (untested).If it doesn't work, the (tested) solution is to add a color background to the table and padding to the row.