为什么 Cursor.requery() 被标记为“已弃用”?
Cursor.requery() 是一种非常常见的方法,使用它来刷新 ListView 的内容。但为什么这个方法被标记为“已弃用”呢?我不太清楚 API 文档上的原因。
Cursor.requery() API: http://developer.android.com/reference/android/database/Cursor .html#requery()
谁能进一步解释一下原因吗?谢谢:)
Cursor.requery() is a very common method while using it to refresh a ListView's content. But why is this method marked "deprecated"? I can't understand the reason on the API docs very clearly.
Cursor.requery() API:
http://developer.android.com/reference/android/database/Cursor.html#requery()
Can anyone please explain the reason any further? Thanks:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这样做是因为引入了新的 Loaders API 来简化查询游标异步地。
正如弃用说明所述
这就是我们应该使用的。
更新
似乎也与
Activity.startManaginCursor
的弃用有关:I believe it was done because new Loaders API was introduced to simplify querying Cursors asynchronously.
As deprecation note says
that's what we should be using.
update
It seems that it can also be related to deprecation of
Activity.startManaginCursor
: