Lines Matching defs:Loader

28  * Static library support version of the framework's {@link android.content.Loader}.
34 public class Loader<D> {
47 * it to the Loader to have the loader re-load its data when the observer
69 * Interface that is implemented to discover when a Loader has finished
72 * to find out when a Loader it is managing has completed so that this can
74 * Loader is not being used in conjunction with LoaderManager.
78 * Called on the thread that created the Loader when the load is complete.
83 public void onLoadComplete(Loader<D> loader, D data);
87 * Interface that is implemented to discover when a Loader has been canceled
90 * to find out when a Loader it is managing has been canceled so that it
91 * can schedule the next Loader. This interface should only be used if a
92 * Loader is not being used in conjunction with LoaderManager.
96 * Called on the thread that created the Loader when the load is canceled.
100 public void onLoadCanceled(Loader<D> loader);
107 * the Loader's Context, don't use the constructor argument directly.
113 public Loader(Context context) {
250 * is being started. When using a Loader with {@link android.support.v4.app.LoaderManager},
252 * with its management of the Loader.
254 * Starts an asynchronous load of the Loader's data. When the result
262 * <p>This updates the Loader's internal state so that
342 * is being stopped. When using a Loader with {@link android.support.v4.app.LoaderManager},
344 * with its management of the Loader.
353 * <p>This updates the Loader's internal state so that
375 * {@link android.support.v4.app.LoaderManager} when restarting a Loader. When using
376 * a Loader with {@link android.support.v4.app.LoaderManager},
378 * with its management of the Loader.
380 * Tell the Loader that it is being abandoned. This is called prior
403 * {@link android.support.v4.app.LoaderManager} when destroying a Loader. When using
404 * a Loader with {@link android.support.v4.app.LoaderManager},
406 * with its management of the Loader.
408 * Resets the state of the Loader. The Loader should at this point free
413 * <p>This updates the Loader's internal state so that
493 * For debugging, converts an instance of the Loader's data class to
514 * Print the Loader's state into the given stream.