Trying to implement LoaderManager + CursorLoader.
In the onFinish adapter, the adapter should change its cursor
public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
But swapCursor is available with a level 11 API.
So, how do I change the cursor in the Android 10 API?
source share