Java android.support.v4.app LoaderManager fields, constructors, methods, implement or subclass

Example usage for Java android.support.v4.app LoaderManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.support.v4.app LoaderManager.

The text is from its open source code.

Subclass

android.support.v4.app.LoaderManager has subclasses.
Click this link to see all its subclasses.

Method

voiddestroyLoader(int id)
Stops and removes the loader with the given ID.
voidenableDebugLogging(boolean enabled)
Control whether the framework's internal loader manager debugging logs are turned on.
LoadergetLoader(int id)
Return the Loader with the given id or null if no matching Loader is found.
booleanhasRunningLoaders()
Returns true if any loaders managed are currently running and have not returned data to the application yet.
LoaderinitLoader(int id, Bundle args, LoaderManager.LoaderCallbacks callback)
Ensures a loader is initialized and active.
LoaderrestartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks callback)
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.