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.support.Twitter4JActivitiesLoader.java

public abstract class Twitter4JActivitiesLoader extends AsyncTaskLoader<List<ParcelableActivity>>
        implements Constants {
    private final Context mContext;

    private final long mAccountId;
    private final List<ParcelableActivity> mData = new NoDuplicatesArrayList<ParcelableActivity>();

From source file com.nextgis.libngui.adapter.LocalResourceListLoader.java

public class LocalResourceListLoader extends AsyncTaskLoader<List<LocalResourceListItem>>

{
    protected File mPath;
    protected int mTypeMask;
    protected boolean mCanSelectMulti;

From source file com.morestudio.littledot.doctor.ui.favorites.FavLoader.java

public class FavLoader extends AsyncTaskLoader<Cursor> {

    private Cursor currentResult;

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

From source file com.roamprocess1.roaming4world.ui.favorites.FavLoader.java

public class FavLoader extends AsyncTaskLoader<Cursor> {

    private Cursor currentResult;

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

From source file org.anbox.appmgr.AppsLoader.java

/**
 * @credit http://developer.android.com/reference/android/content/AsyncTaskLoader.html
 */
public class AppsLoader extends AsyncTaskLoader<ArrayList<AppModel>> {
    ArrayList<AppModel> mInstalledApps;

From source file org.jraf.android.dcn.handheld.app.addressinfo.list.AddressInfoLoader.java

public class AddressInfoLoader extends AsyncTaskLoader<List<AddressInfo>> {
    private List<AddressInfo> mData;
    private ForceLoadContentObserver mObserver = new ForceLoadContentObserver();
    private Cursor mCursor;

    public AddressInfoLoader(Context ctx) {

From source file com.piusvelte.cloudset.android.DevicesLoader.java

public class DevicesLoader extends AsyncTaskLoader<List<SimpleDevice>> {

    public enum Action {
        ADD_DEVICE, GET_SUBSCRIBERS, REMOVE_DEVICE, NONE;
    }

From source file nz.org.proverbio.android.loader.DataLoader.java

/**
 * @author Juan Pablo Proverbio
 */
public class DataLoader extends AsyncTaskLoader<ServerApiCall> {
    private static final String TAG = DataLoader.class.getSimpleName();
    private static final ApplicationContext APPLICATION_CONTEXT = ApplicationContext.getInstance();

From source file com.example.levelup.core.app.net.RequestLoader.java

/**
 * <p>
 * A loader that makes network requests and returns LevelUp Web Service objects (
 * {@link com.scvngr.levelup.core.model.User}, {@link com.scvngr.levelup.core.model.AccessToken},
 * {@link com.scvngr.levelup.core.model.PaymentToken}, etc.).
 * </p>

From source file com.huawei.music.utils.AddIdCursorLoader.java

/**
 * A loader that queries the {@link ContentResolver} and returns a {@link Cursor}.
 * This class implements the {@link Loader} protocol in a standard way for
 * querying cursors, building on {@link AsyncTaskLoader} to perform the cursor
 * query on a background thread so that it does not block the application's UI.
 *