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.nextgis.maplibui.services.HTTPLoader.java

public class HTTPLoader extends AsyncTaskLoader<String> {
    protected final String mUrl;
    protected final String mLogin;
    protected final String mPassword;
    protected String mAuthToken;

From source file org.sufficientlysecure.keychain.ui.keyview.loader.SubkeyStatusLoader.java

public class SubkeyStatusLoader extends AsyncTaskLoader<KeySubkeyStatus> {
    public static final String[] PROJECTION = new String[] { Keys.KEY_ID, Keys.CREATION, Keys.CAN_CERTIFY,
            Keys.CAN_SIGN, Keys.CAN_ENCRYPT, Keys.HAS_SECRET, Keys.EXPIRY, Keys.IS_REVOKED, Keys.ALGORITHM,
            Keys.KEY_SIZE, Keys.KEY_CURVE_OID };
    private static final int INDEX_KEY_ID = 0;
    private static final int INDEX_CREATION = 1;

From source file org.mythtv.android.player.app.loaders.LiveStreamAsyncTaskLoader.java

/**
 * Created by dmfrey on 4/5/15.
 */
public class LiveStreamAsyncTaskLoader extends AsyncTaskLoader<LiveStreamInfo> {

    private static final String TAG = LiveStreamAsyncTaskLoader.class.getSimpleName();

From source file org.mythtv.android.player.app.loaders.ProgramsAsyncTaskLoader.java

/**
 * Created by dmfrey on 3/10/15.
 */
public class ProgramsAsyncTaskLoader extends AsyncTaskLoader<List<Program>> {

    private static final String TAG = ProgramsAsyncTaskLoader.class.getSimpleName();

From source file org.mythtv.android.player.app.loaders.VideosAsyncTaskLoader.java

/**
 * Created by dmfrey on 3/10/15.
 */
public class VideosAsyncTaskLoader extends AsyncTaskLoader<List<Video>> {

    private static final String TAG = VideosAsyncTaskLoader.class.getSimpleName();

From source file com.twofortyfouram.locale.sdk.host.ui.loader.SupportPluginRegistryLoader.java

/**
 * An {@link AsyncTaskLoader} for loading the {@link PluginRegistry}.
 * <p>
 * In addition to reloading when the registry changes, this also reloads when an
 * interesting configuration change occurs that could affect the display of
 * plug-ins in the UI.

From source file org.mythtv.android.player.app.loaders.SearchProgramsAsyncTaskLoader.java

/**
 * Created by dmfrey on 3/10/15.
 */
public class SearchProgramsAsyncTaskLoader extends AsyncTaskLoader<List<Program>> {

    private static final String TAG = SearchProgramsAsyncTaskLoader.class.getSimpleName();

From source file com.tct.fw.ex.photo.loaders.PhotoBitmapLoader.java

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

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

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

    private final boolean mOmitIntentExtra;

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

public final class CacheDownloadLoader extends AsyncTaskLoader<CacheDownloadLoader.Result> {

    private final Uri mUri;
    private final Handler mHandler;
    private final Downloader mDownloader;
    private final Listener mListener;