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.LoginLoader.java

public class LoginLoader extends AsyncTaskLoader<AsyncResult<Boolean>> {

    private MusicBrainzApplication app;
    private String username;
    private String password;

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

public abstract class ParcelableStatusesLoader extends AsyncTaskLoader<List<ParcelableStatus>>
        implements Constants, IExtendedLoader {

    private final List<ParcelableStatus> mData = new NoDuplicatesArrayList<>();
    private final boolean mFirstLoad;
    private final int mTabPosition;

From source file com.bushstar.htmlcoin_android_wallet.ui.WalletBalanceLoader.java

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

From source file com.bushstar.kobocoin_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.SubmitRatingLoader.java

public class SubmitRatingLoader extends AsyncTaskLoader<AsyncResult<Float>> {

    private MusicBrainzApplication app;
    private Entity type;
    private String mbid;
    private int rating;

From source file org.mariotaku.twidere.loader.ScheduledStatusesLoader.java

/**
 * Created by mariotaku on 15/7/10.
 */
public class ScheduledStatusesLoader extends AsyncTaskLoader<List<ScheduledStatus>> {

    private final UserKey mAccountId;

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

/**
 * Account loader gets the information on a spinner for an account.
 *
 * @author Roque Rueda
 * @since 31/07/2014
 * @version 1.0

From source file com.woollysammoth.nubit_android_wallet.ui.WalletBalanceLoader.java

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

From source file com.dwdesign.tweetings.loader.ParcelableUsersLoader.java

public abstract class ParcelableUsersLoader extends AsyncTaskLoader<List<ParcelableUser>> implements Constants {

    private final Twitter mTwitter;
    private final List<ParcelableUser> mUsersList;
    private final long mAccountId;

From source file pt.up.mobile.loaders.SubjectLoader.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.