我在我的应用程序中使用 CursorLoader 来执行数据库事务。
我的应用程序还具有调用 startManagingCursor() 的方法,该方法已被弃用。
我只是想替换这个方法调用,那我该怎么办?
我在我的应用程序中使用 CursorLoader 来执行数据库事务。
我的应用程序还具有调用 startManagingCursor() 的方法,该方法已被弃用。
我只是想替换这个方法调用,那我该怎么办?
startManagingCursor()
is deprecated because it does operations on the main thread which can freeze up the UI and deliver a poor user experience. You should use a CusrorLoader with a LoaderManager instead. Check out this tutorial series from Alex Lockwood
for detailed instructions:.