标签: android android-cursorloader
使用CursorLoader时,我应该在哪里处理查询结果(耗时的任务?)
答案 0 :(得分:1)
使用AsyncTask从游标加载数据并在onPostExcute方法(uiThread)中返回值,当你多次调用任务时取消前者。
答案 1 :(得分:0)
在onCreateLoader中,一旦处理完结果,返回null或cursorloader以通知你已完成后台任务并在onLoadFinished中更新你的ui