动态创建TableRow
我正在尝试动态创建“单元格”,它们需要一个图像和 3 个 TextView。我选择使用 TableLayout,我的单元格是 TableRows。 我试过这个:
但是单元格不会出现(是的,我改变了文本的颜色:-))
有人知道会发生什么吗? 而且,有人建议比 TableRow 更好的东西?
I'm trying to create "cells" dynamically, they need an image and 3 TextViews. I chose to use the TableLayout and my cells are TableRows.
I've tried this:
But cells do not appear (yes, I changed the color of the text :-))
Does anyone have any idea what might be happening?
And, someone suggests something better than TableRow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 WebView,然后可以使用 HTML/js 创建/操作表(有出色的 jQuery 插件)。
我尝试使用 TableLayout 几次,然后切换到 WebView/HTML 解决方案。
这实际上取决于您的应用程序的设计。
You can use a WebView and then your table can be created/manipulated using HTML/js (there are excellent jQuery plugins).
I've tried a couple of times using TableLayout and then I've switched to the WebView/HTML solution.
It really depends on the design of your app.