如何使用java代码在android中创建多列表格视图?
我正在开发一个安卓应用程序。为此,我需要有一个动态的 tableView。我正在使用 Android 中可用的 TableLayout。但我找不到在我的 tableView 中拥有多个列的方法。请问有什么选择吗?
I'm developping an android application. For that I need to have a dynamic tableView. I'm using TableLayout for that which is available in android. But I couldn't find a way to have multiple columns in my tableView. Any option please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道我是否完全理解你的问题,但这里:
此代码创建具有 3 列和 4 行的 TableLayout。基本上,您可以在 XML 文件中声明 TableLayout,然后将ContentView 设置为 XML,并使用 findViewById 来查找您的 TableLayout。只有 TableRow 及其子元素必须在 java 代码中完成。
I don't know if I fully understand your question, but here:
This code creates TableLayout with 3 columns and 4 rows. Basically you can have TableLayout declared in XML file, then setContentView to XML, and use findViewById to find your TableLayout. Only TableRow and it's children have to be done in java code.
您可以在设计视图上添加任意数量的列。您所要做的就是将要显示为列的任何视图元素放在 TablaRow 标记之间。
You can add as many column as you want on design view. All you have to do is to put any View element you want to show as a column bettwen TablaRow tags.