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.fututel.ui.favorites.FavLoader.java

public class FavLoader extends AsyncTaskLoader<Cursor> {

    private Cursor currentResult;

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

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

/**
 * Created by mariotaku on 15-7-5.
 */
public class ObjectCursorLoader<T> extends AsyncTaskLoader<List<T>> {

    final ForceLoadContentObserver mObserver;

From source file com.christmasiscoming.loaders.PhotoGalleryAsyncLoader.java

/**
 * AsyncTask loader used to load image resources in the background of a fragment.
 * Reference: http://developer.android.com/reference/android/content/AsyncTaskLoader.html
 *
 * Created by Rex St. John (on behalf of AirPair.com) on 3/4/14.
 */

From source file com.sonetel.ui.favorites.FavLoader.java

public class FavLoader extends AsyncTaskLoader<Cursor> {

    private Cursor currentResult;

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

From source file fr.eoit.activity.loader.BaseProductionNeedsLoader.java

/**
 * @author picon.software
 *
 */
public class BaseProductionNeedsLoader extends AsyncTaskLoader<SparseItemBeanArray> {

From source file com.csipsimple.ui.favorites.FavLoader.java

public class FavLoader extends AsyncTaskLoader<Cursor> {

    private Cursor currentResult;

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

From source file org.klnusbaum.udj.PlaylistLoader.java

public class PlaylistLoader extends AsyncTaskLoader<PlaylistLoader.PlaylistResult> {
    private static final String TAG = "PlaylistLoader";

    public enum PlaylistLoadError {
        NO_ERROR, PLAYER_INACTIVE_ERROR, SERVER_ERROR, AUTHENTICATION_ERROR, NO_LONGER_IN_PLAYER_ERROR, KICKED_ERROR
    }

From source file com.android.messaging.ui.photoviewer.BuglePhotoBitmapLoader.java

/**
 * Loader for the bitmap of a photo.
 */
public class BuglePhotoBitmapLoader extends AsyncTaskLoader<BitmapResult> implements PhotoBitmapLoaderInterface {
    private String mPhotoUri;
    private ImageResource mImageResource;

From source file it.geosolutions.android.map.loaders.FeatureCircleLoader.java

/**
 * Async query task to query layers. Updates an adapter with the results from a
 * query A query to the task is a "List of Lists of Maps", implemented with a
 * bundle of bundles The main bundle contains is name->list of features feature
 * contains name->value bundles
 * 

From source file catchla.yep.loader.ObjectCursorLoader.java

/**
 * Created by mariotaku on 15-7-5.
 */
public class ObjectCursorLoader<T> extends AsyncTaskLoader<List<T>> {

    final ForceLoadContentObserver mObserver;