ListView 的 CursorAdapter 与 ArrayAdapter

发布于 2024-12-21 20:44:59 字数 274 浏览 1 评论 0原文

我想用来自网络的 JSON 形式的数据填充我的 ListView 。该列表理论上应该是无限的,如果滚动到底部,应用程序会请求更多数据。

  • 我应该使用 Cursor 还是 Array(List) 适配器将我的在线数据库与 ListView 链接起来?
  • 更一般地说,在光标数组之间进行选择时要考虑哪些参数?

I want to fill my ListView with data that's going to come from the web in the form of JSON. The list should be theoretically infinite, with the app making requests for more data if scrolled to the bottom.

  • Should I use a Cursor or an Array(List) adapter to link my online database with my ListView?
  • More generally, what are the arguments to consider when choosing between cursor and array?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月依秋水 2024-12-28 20:44:59

嗯,我认为你应该看看 ContentProviders。它们对于您试图解决的问题更加自然。您必须实现 ContentProvider 在查询请求时返回的自定义 Cursor

参考:

http://developer.android.com/guide/topics/providers/content-providers。 html

Well I think you should look at ContentProviders. They are more natural to the problem that you are trying to solve. You have to implement your custom Cursor which ContentProvider returns on a query request.

Ref:

http://developer.android.com/guide/topics/providers/content-providers.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文