Example usage for Java android.app LoaderManager fields, constructors, methods, implement or subclass
The text is from its open source code.
void | destroyLoader(int id) Stops and removes the loader with the given ID. |
Loader | getLoader(int id) Return the Loader with the given id or null if no matching Loader is found. |
Loader | initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks Ensures a loader is initialized and active. |
Loader | restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks Starts a new or restarts an existing android.content.Loader in this manager, registers the callbacks to it, and (if the activity/fragment is currently started) starts loading it. |