When I start a cursor loader with
Bundle bundle = new Bundle();
bundle.putInt("arg", 123);
getLoaderManager().restartLoader(0, bundle, this);
I want to get the bundle in
public void onLoadFinished(Loader<Cursor> loader, Cursor data)
But this only seems possible from onCreateLoader(...)
The only workaround I can think of is to subclass CursorLoader and add some fields to persist data across loading to onLoadFinished(...)
Thanks!