android 代码中的表格行和列
我正在尝试创建一个带有动态添加的行和列(来自对象数组)的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试创建表和行,执行类似的操作
,并使用表添加行,
类似地,您可以使用
addView()
函数添加其他视图(文本、图像视图等)Try to create table and row doing something like this
and add row with table by
similarly you can add other view (text, image view etc.) by using
addView()
function