使用Adapter类与非AdapterView视图组同步数据
我想使用适配器将数据列表与显示数据的垂直 LinearLayout 同步。我遇到的问题是非 AdapterView 视图组(如 LinearLayout)没有 setAdapter() 方法。谁能建议一种实现这一目标的方法?
I would like to use an adapter to synchronize a List of data with a vertical LinearLayout where it will be displayed. The problem I'm having is that non-AdapterView View Groups (Like LinearLayout) do not have the setAdapter() method. Can anyone suggest a way of achieving this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
而是使用带有 SimpleAdapter 或 SimpleCursorAdapter 的 ListView。这两个适配器都非常灵活,可以根据您的数据进行各种自定义。
Instead use a ListView with SimpleAdapter or SimpleCursorAdapter. Both adapters are very flexible for all kinds of customization based on your data.