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.musicbrainz.mobile.loader.ReleaseGroupStubsLoader.java

public class ReleaseGroupStubsLoader extends AsyncTaskLoader<AsyncResult<LinkedList<ReleaseStub>>> {

    private MusicBrainzApplication app;
    private String mbid;

    public ReleaseGroupStubsLoader(Context appContext, String mbid) {

From source file org.sufficientlysecure.keychain.ui.adapter.ImportKeysListServerLoader.java

public class ImportKeysListServerLoader
        extends AsyncTaskLoader<AsyncTaskResultWrapper<ArrayList<ImportKeysListEntry>>> {
    Context mContext;

    String mServerQuery;
    String mKeyServer;

From source file de.vanita5.twittnuker.loader.support.ParcelableStatusLoader.java

public class ParcelableStatusLoader extends AsyncTaskLoader<SingleResponse<ParcelableStatus>> {

    private final boolean mOmitIntentExtra;
    private final Bundle mExtras;
    private final long mAccountId, mStatusId;

From source file com.nononsenseapps.feeder.util.DeltaCursorLoader.java

/**
 * Static library support version of the framework's {@link android.content.CursorLoader}.
 * 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 de.grobox.liberario.locations.NearbyLocationsLoader.java

public class NearbyLocationsLoader extends AsyncTaskLoader<NearbyLocationsResult> {

    private final String TAG = getClass().getName();
    private final static String MAX_DISTANCE = "maxDistance";

    private final Location location;

From source file com.matthewmitchell.nubits_android_wallet.ui.WalletBalanceLoader.java

/**
 * @author Andreas Schildbach
 */
public final class WalletBalanceLoader extends AsyncTaskLoader<BigInteger> {
    private final Wallet wallet;

From source file org.musicbrainz.mobile.loader.CollectionListLoader.java

public class CollectionListLoader extends AsyncTaskLoader<AsyncResult<LinkedList<EditorCollectionStub>>> {

    private MusicBrainzApplication app;

    public CollectionListLoader(Context appContext) {
        super(appContext);

From source file info.guardianproject.checkey.AppListLoader.java

public class AppListLoader extends AsyncTaskLoader<List<AppEntry>> {
    public final PackageManager pm;

    List<AppEntry> apps;
    PackageIntentReceiver packageObserver;

From source file com.roque.rueda.cashflows.loader.AccountLoader.java

/**
 * Account loader this class is responsible for fetching the information
 * from the database.
 * 
 * @author Roque Rueda
 * @since 06/04/2014

From source file com.uwetrottmann.movies.loaders.TmdbMoviesLoader.java

/**
 * Loads a list of movies from TMDb.
 */
public class TmdbMoviesLoader extends AsyncTaskLoader<List<Movie>> {

    private static final String TAG = "TmdbMoviesLoader";