java startManagingCursor(cursor) 不推荐使用的方法
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/27207989/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
startManagingCursor(cursor) deprecated method
提问by user3253955
I used this code:
我使用了这个代码:
Cursor c = cr.query(message, null, null, null, null);
startManagingCursor(c);
But startManagingCursor(c)
is a deprecated method. How can i replace it?
但是startManagingCursor(c)
是一种不推荐使用的方法。我怎样才能更换它?
采纳答案by Petr Duchek
This method was deprecated in API level 11. Use the new CursorLoaderclass with LoaderManagerinstead; this is also available on older platforms through the Android compatibility package.
此方法在 API 级别 11 中已弃用。请改用带有LoaderManager的新CursorLoader类;这也可以通过 Android 兼容包在旧平台上使用。
Check out this tutorial series.
查看本系列教程。