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 de.vanita5.twittnuker.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);

From source file pt.up.mobile.loaders.StudentLoader.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 pt.up.mobile.loaders.ScheduleLoader.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.vanita5.twittnuker.loader.support.ParcelableUsersLoader.java

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

    private final List<ParcelableUser> mData = Collections
            .synchronizedList(new NoDuplicatesArrayList<ParcelableUser>());

    public ParcelableUsersLoader(final Context context, final List<ParcelableUser> data) {

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

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

    private final List<ParcelableUser> mData = Collections
            .synchronizedList(new NoDuplicatesArrayList<ParcelableUser>());
    private boolean mFromUser;

From source file com.getbase.android.db.loaders.ComposedCursorLoader.java

public class ComposedCursorLoader<T> extends AsyncTaskLoader<T> {
    final ForceLoadContentObserver mObserver;

    Uri mUri;
    String[] mProjection;
    String mSelection;

From source file org.getlantern.firetweet.loader.support.ParcelableStatusLoader.java

/**
* Created by mariotaku on 14/12/5.
*/
public class ParcelableStatusLoader extends AsyncTaskLoader<SingleResponse<ParcelableStatus>> {

    private final boolean mOmitIntentExtra;

From source file pt.up.mobile.loaders.TuitionLoader.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 org.musicbrainz.mobile.loader.SubmitBarcodeLoader.java

public class SubmitBarcodeLoader extends AsyncTaskLoader<AsyncResult<Void>> {

    private MusicBrainzApplication app;
    private String mbid;
    private String barcode;

From source file it.gulch.linuxday.android.loaders.BookmarkStatusLoader.java

/**
 * This loader retrieves the bookmark status of an event from the database, then updates it in real time by listening
 * to broadcasts.
 *
 * @author Christophe Beyls
 */