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 ca.jdkenney.sailstar.DBLoader.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 com.roque.rueda.cashflows.loader.AccountBalanceLoader.java

/**
 * Loads the balance of an account.
 *
 * @author Roque Rueda
 * @since 13/11/2014
 * @version 1.0

From source file de.grobox.liberario.trips.MoreTripsLoader.java

@ParametersAreNonnullByDefault
class MoreTripsLoader extends AsyncTaskLoader<QueryTripsResult> {

    private final String TAG = getClass().getName();

    private final TransportNetworkManager manager;

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

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

    String mKeybaseQuery;

From source file com.uwetrottmann.movies.util.TraktMoviesLoader.java

public class TraktMoviesLoader extends AsyncTaskLoader<List<Movie>> {

    public interface InitBundle {
        String CATEGORY = "category";
    }

From source file pt.up.mobile.loaders.ProfilePicLoader.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.transportr.locations.NearbyLocationsLoader.java

public class NearbyLocationsLoader extends AsyncTaskLoader<NearbyLocationsResult> {

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

    private final TransportNetwork network;

From source file com.hivewallet.androidclient.wallet.ui.WalletBalanceLoader.java

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

From source file dev.drsoran.moloko.loaders.AbstractLoader.java

public abstract class AbstractLoader<D> extends AsyncTaskLoader<D> {
    private final ForceLoadContentObserver observer = new ForceLoadContentObserver();

    private volatile D result;

    private final AtomicBoolean respectContentChanges = new AtomicBoolean(true);

From source file org.mariotaku.twidere.loader.support.SavedSearchesLoader.java

public class SavedSearchesLoader extends AsyncTaskLoader<ResponseList<SavedSearch>> {

    private final long mAccountId;

    public SavedSearchesLoader(final Context context, final long account_id) {
        super(context);