Example usage for android.support.v4.content Loader subclass-usage

List of usage examples for android.support.v4.content Loader subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.content Loader subclass-usage.

Usage

From source file com.facebook.scrumptious.picker.GraphObjectPagingLoader.java

class GraphObjectPagingLoader extends Loader<GraphObjectCursor> {
    private GraphRequest originalRequest;
    private GraphRequest currentRequest;
    private GraphRequest nextRequest;
    private OnErrorListener onErrorListener;
    private GraphObjectCursor cursor;

From source file org.gateshipone.malp.application.loaders.AlbumsLoader.java

public class AlbumsLoader extends Loader<List<MPDAlbum>> {

    private MPDResponseAlbumList pAlbumsResponseHandler;

    private String mArtistName;

From source file com.google.io.accessibility.util.IncrementalAsyncTaskLoader.java

/**
 * Static library support version of the framework's
 * {@link android.content.AsyncTaskLoader}. Used to write apps that run on
 * platforms prior to Android 3.0. When running on Android 3.0 or above, this
 * implementation is still used; it does not try to switch to the framework's
 * implementation. See the framework SDK documentation for a class overview.

From source file org.gateshipone.malp.application.loaders.OutputsLoader.java

public class OutputsLoader extends Loader<List<MPDOutput>> {

    private OutputResponseHandler mOutputResponseHandler;

    Context mContext;

From source file m2.android.archetype.example.FacebookSdk.widget.GraphObjectPagingLoader.java

class GraphObjectPagingLoader<T extends GraphObject> extends Loader<SimpleGraphObjectCursor<T>> {
    private final Class<T> graphObjectClass;
    private boolean skipRoundtripIfCached;
    private Request originalRequest;
    private Request currentRequest;
    private Request nextRequest;

From source file heartware.com.FB_picker.GraphObjectPagingLoader.java

class GraphObjectPagingLoader extends Loader<GraphObjectCursor> {
    private GraphRequest originalRequest;
    private GraphRequest currentRequest;
    private GraphRequest nextRequest;
    private OnErrorListener onErrorListener;
    private GraphObjectCursor cursor;

From source file com.silentcircle.contacts.utils.EmptyLoader.java

/**
 * A {@link Loader} only used to make use of the {@link android.app.Fragment#setStartDeferred}
 * feature from an old-style fragment which doesn't use {@link Loader}s to load data.
 *
 * This loader never delivers results.  A caller fragment must destroy it when deferred fragments
 * should be started.

From source file com.silentcircle.contacts.utils.ScLoader.java

/**
 * Extends the standard class to provide the cancellation functions and listener.
 * 
 * @param <D> The result returned when the load is complete
 */
public class ScLoader<D> extends Loader<D> {

From source file edu.rosehulman.android.directory.loaders.AsyncLoader.java

/**
 * Abstract Loader that provides an {@link ModernAsyncTask} to do the work.  See
 * {@link Loader} and {@link android.app.LoaderManager} for more details.
 *
 * <p>Here is an example implementation of an ModernAsyncTaskLoader subclass that
 * loads the currently installed applications from the package manager.  This