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 com.aizak.drawnote.model.loader.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.uwetrottmann.movies.loaders.GenericAsyncTaskLoader.java

/**
 * Generic {@link Loader} assuming a list or a single item is loaded.
 */
public abstract class GenericAsyncTaskLoader<T> extends AsyncTaskLoader<T> {

    private T mData;

From source file org.ounl.lifelonglearninghub.mediaplayer.cast.refplayer.browser.VideoItemLoader.java

public class VideoItemLoader extends AsyncTaskLoader<List<MediaInfo>> {

    private static final String TAG = "VideoItemLoader";
    private final String mUrl;

    public VideoItemLoader(Context context, String url) {

From source file me.egorand.mysecrets.data.loaders.SecretsLoader.java

/**
 * @author Egor
 */
public class SecretsLoader extends AsyncTaskLoader<List<Secret>> {

    private final SecretsRepository secretsRepository;

From source file org.mozilla.gecko.fxa.AccountLoader.java

/**
 * A Loader that queries and updates based on the existence of Firefox and
 * legacy Sync Android Accounts.
 *
 * The loader returns an Android Account (of either Account type) if an account
 * exists, and null to indicate no Account is present.

From source file org.lunci.dumbthing.database.AbstractCursorLoader.java

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

    Cursor lastCursor = null;

    public AbstractCursorLoader(Context context) {

From source file beldan.restrung.async.loaders.AsynchronousLoader.java

/**
 * Abstract class for asynchronous loaders
 *
 * @param <Result> the type of results
 */
public abstract class AsynchronousLoader<Result> extends AsyncTaskLoader<Result> {

From source file com.btmura.android.reddit.content.UserInfoLoader.java

/**
 * {@link AsyncTaskLoader} that loads a user's account info.
 */
public class UserInfoLoader extends AsyncTaskLoader<AccountInfoResult> {

    public static final String TAG = "UserInfoLoader";

From source file com.xixicm.ca.data.loader.DataAsyncLoader.java

public abstract class DataAsyncLoader<Data> extends AsyncTaskLoader<Data> {
    // We hold a reference to the Loaders data here.
    private Data mData;

    public DataAsyncLoader(Context context) {
        // Loaders may be used across multiple Activitys (assuming they aren't

From source file it.restrung.rest.async.loaders.AsynchronousLoader.java

/**
 * Abstract class for asynchronous loaders
 *
 * @param <Result> the type of results
 */
public abstract class AsynchronousLoader<Result> extends AsyncTaskLoader<Result> {