尝试实现 LoaderManager + CursorLoader。
在 onFinish 方法适配器应该交换它的光标
public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
// Swap the new cursor in. (The framework will take care of closing the
// old cursor once we return.)
mAdapter.swapCursor(data);
}
但是从 API 级别 11 开始可以使用 swapCursor。
那么我应该如何在 android API 10 中交换光标?