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

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

Introduction

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

Usage

From source file org.blankapp.content.AsyncLoader.java

public class AsyncLoader<D> extends AsyncTaskLoader<D> {
    private final String TAG = AsyncLoader.class.getSimpleName();

    private D mData;

    private Exception mError;

From source file can.yrt.onebusaway.ArrivalsListLoader.java

class ArrivalsListLoader extends AsyncTaskLoader<ObaArrivalInfoResponse> {

    private final String mStopId;

    private ObaArrivalInfoResponse mLastGoodResponse;

From source file com.commonsware.cwac.loaderex.AbstractCursorLoader.java

abstract public class AbstractCursorLoader extends AsyncTaskLoader<Cursor> {
    abstract protected Cursor buildCursor();

    Cursor lastCursor = null;

    public AbstractCursorLoader(Context context) {

From source file com.ipaulpro.afilechooser.FileLoader.java

/**
 * Loader that returns a list of Files in a given file path.
 * 
 * @version 2012-10-28
 * 
 * @author paulburke (ipaulpro)

From source file ela.riskey.parammod.filechooser.FileLoader.java

/**
 * Loader that returns a list of Files in a given file path.
 * 
 * @version 2012-10-28
 * 
 * @author paulburke (ipaulpro)

From source file com.commonsware.cwac.loaderex.acl.AbstractCursorLoader.java

abstract public class AbstractCursorLoader extends AsyncTaskLoader<Cursor> {
    abstract protected Cursor buildCursor();

    Cursor lastCursor = null;

    public AbstractCursorLoader(Context context) {

From source file net.meiolania.apps.habrahabr.fragments.events.loader.EventShowLoader.java

public class EventShowLoader extends AsyncTaskLoader<EventFullData> {
    public final static int INFO_LOCATION = 0;
    public final static int INFO_PAY = 1;
    public final static int INFO_SITE = 2;
    private String url;

From source file org.gateshipone.odyssey.loaders.FileLoader.java

public class FileLoader extends AsyncTaskLoader<List<FileModel>> {

    private final Context mContext;

    /**
     * The parent directory.

From source file com.jiahaoliuliu.storyteller.utils.SimpleCursorLoader.java

/**
 * 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 com.adhi.quantumthemer.aFileChooser.FileLoader.java

/**
 * Loader that returns a list of Files in a given file path.
 * 
 * @version 2012-10-28
 * 
 * @author paulburke (ipaulpro)