CursorAdapter有一个constructor,它带有一个有趣的标志autoRequery

声明:



不鼓励创建该功能的意义何在?

最佳答案

根据文档,我们不建议这样做,因为它会导致在应用程序的UI线程上执行Cursor操作

因此,这会导致应用程序出现性能问题

那么要添加更多...其他解决方案正在使用swapCursor()
解决方案:

CursorDemo cursorDemo = new CursorDemo(PrintContent.this, cursor);

cursorDemo.swapCursor(cursor_update);

关于android - 为什么不鼓励在CursorAdapter中使用autoRequery?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21158932/

10-09 15:42