我在应用程序中使用CursorLoader进行数据库事务。
我的应用程序还具有调用startManagingCursor()的方法,该方法已被弃用。
我只想替换此方法调用,那么我应该怎么做?
最佳答案
不推荐使用startManagingCursor()
,因为它在主线程上执行操作会卡住UI并带来糟糕的用户体验。您应该使用CusrorLoader和LoaderManager代替。从this tutorial series checkout Alex Lockwood
以获取详细说明:。
关于android - 具有startManagingCursor()的CursorLoader,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19651680/