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.mariotaku.twidere.loader.ParcelableStatusesLoader.java

public abstract class ParcelableStatusesLoader
        extends AsyncTaskLoader<SynchronizedStateSavedList<ParcelableStatus, Long>> implements Constants {

    protected final Twitter mTwitter;
    protected final long mAccountId;
    private final String mClassName;

From source file cz.maresmar.sfm.view.portal.PluginListLoader.java

/**
 * A custom {@link AsyncTaskLoader} that loads all of the installed plugins.
 */
public class PluginListLoader extends AsyncTaskLoader<List<PluginInfo>> {

    final PackageManager mPm;

From source file id.nci.stm_9.ImportKeysListLoader.java

public class ImportKeysListLoader extends AsyncTaskLoader<List<ImportKeysListEntry>> {
    Context mContext;

    InputData mInputData;

    ArrayList<ImportKeysListEntry> data = new ArrayList<ImportKeysListEntry>();

From source file org.fitchfamily.android.wifi_backend.ui.data.CursorLoader.java

public class CursorLoader extends AsyncTaskLoader<Cursor> {
    private String table;
    private String[] columns;
    private String selection;
    private String[] selectionArgs;
    private String sortOrder;

From source file com.creationgroundmedia.popularmovies.reviews.ReviewLoader.java

/**
* This manages the asynchronous loading of reviews information about a movie from the themoviedb
*/
public class ReviewLoader extends AsyncTaskLoader<List<ReviewItem>> {
    final static private String LOG_TAG = ReviewLoader.class.getSimpleName();

From source file com.creationgroundmedia.popularmovies.trailers.TrailerLoader.java

/**
* This manages the asynchronous loading of trailer information about a movie from the themoviedb
*/
public class TrailerLoader extends AsyncTaskLoader<List<TrailerItem>> {
    final static private String LOG_TAG = TrailerLoader.class.getSimpleName();

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

public abstract class BaseUserListsLoader extends AsyncTaskLoader<List<ParcelableUserList>> {

    protected final NoDuplicatesArrayList<ParcelableUserList> mData = new NoDuplicatesArrayList<ParcelableUserList>();
    protected final Twitter mTwitter;
    protected final boolean mHiResProfileImage;
    protected final long mAccountId;

From source file com.getchute.android.photopickerplus.loaders.AbstractSingleDataInstanceAsyncTaskLoader.java

/**
 * An abstract class that performs asynchronous data loading. While Loaders are
 * active they should monitor the source of their data and deliver new results
 * when the contents change.
 * 
 * @author darko.grozdanovski

From source file es.jpv.android.examples.loadersexample.db.DBSelectCursorLoader.java

/**
 * Allows to execute SQL SELECT statements on the UI thread asynchronously
 */
public class DBSelectCursorLoader extends AsyncTaskLoader<Cursor> {
    final ForceLoadContentObserver mObserver;

From source file org.smap.smapTask.android.loaders.MapDataLoader.java

/**
 * An implementation of AsyncTaskLoader which loads a {@code List<PointEntry>}
 * containing all tasks on the device.
 */
public class MapDataLoader extends AsyncTaskLoader<MapEntry> {