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.piusvelte.imgpagur.RowImagesLoader.java

public class RowImagesLoader extends AsyncTaskLoader<List<ImgListItem>> {

    String link = null;
    List<ImgListItem> rowImages = null;

    public RowImagesLoader(Context context, String link) {

From source file org.xbmc.android.util.ListLoader.java

/**
 * A loader class that loads data from a {@link List}.
 * 
 * See also http://developer.android.com/reference/android/content/AsyncTaskLoader.html
 * for a nice example. This is a very generic version of it.
 *

From source file com.hotmart.dragonfly.ui.AddressDetailLoader.java

public class AddressDetailLoader extends AsyncTaskLoader<AddressDetailResponseVO> {

    private boolean mIsLoading;
    private boolean mHasError;
    private static final String TAG = AddressDetailLoader.class.getSimpleName();
    private long id;

From source file de.grobox.transportr.departures.DeparturesLoader.java

public class DeparturesLoader extends AsyncTaskLoader<QueryDeparturesResult> {

    private final static String TAG = DeparturesLoader.class.getName();
    private final static String STATION_ID = "stationId";
    private final static String MAX_DEPARTURES = "maxDepartures";

From source file org.gateshipone.odyssey.loaders.PlaylistLoader.java

public class PlaylistLoader extends AsyncTaskLoader<List<PlaylistModel>> {

    private final Context mContext;

    /**
     * Flag if a header element should be inserted.

From source file org.gateshipone.malp.application.loaders.ProfilesLoader.java

public class ProfilesLoader extends AsyncTaskLoader<List<MPDServerProfile>> {

    private MPDProfileManager mProfileManager;

    public ProfilesLoader(Context context) {
        super(context);

From source file org.voidsink.anewjkuapp.base.BaseAsyncTaskLoader.java

/**
 * Loader which extends AsyncTaskLoaders and handles caveats as pointed out in http://code.google.com/p/android/issues/detail?id=14944.
 *
 * Based on CursorLoader.java in the Fragment compatibility package
 *
 * @param <D> data type

From source file com.libtop.weituR.activity.main.DocUpload.FileLoader.java

/**
 * Loader that returns a list of Files in a given file path.
 * 
 * @version 2013-12-11
 * @author paulburke (ipaulpro)
 */

From source file com.finchuk.clock2.data.SQLiteCursorLoader.java

/**
 * Created by Oleksandr Finchuk on 07/06/2017.
 *
 * Efficiently loads and holds a Cursor.
 */
public abstract class SQLiteCursorLoader<T extends ObjectWithId, C extends BaseItemCursor<T>>

From source file com.philliphsu.clock2.data.SQLiteCursorLoader.java

/**
 * Created by Phillip Hsu on 6/28/2016.
 *
 * Efficiently loads and holds a Cursor.
 */
public abstract class SQLiteCursorLoader<T extends ObjectWithId, C extends BaseItemCursor<T>>