使用 arrayview android 填充表格
您好,我需要创建并填充一个表,我正在尝试像 ListView-ArrayAdapter 那样进行操作。 我可以这样做吗,或者我应该让 2 个小球(水平和垂直)使每个单元格膨胀并将其插入相应的行中?
提前致谢!!
Hello I'd need to create and fill a table, im trying do it like ListView-ArrayAdapter does.
Can I do it that way or i shoud make 2 bucles (horizontal and vertical) inflate each cell and insert it in the corresponding row?
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用自定义 ArrayAdapter 来完成,只需覆盖适配器中的 getView 并填充自定义布局即可。请参阅 ListView
It can be done with a custom ArrayAdapter, just have to override getView in the adapter and inflate a custom layout. see ListView