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.handlerexploit.prime.example.utils.WrappedAsyncTaskLoader.java

/**
 * <a href="http://code.google.com/p/android/issues/detail?id=14944">Issue
 * 14944</a>
 * 
 * @author Alexander Blom
 */

From source file com.webimageloader.sample.AsyncLoader.java

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

From source file ro.edi.util.ui.AsyncLoader.java

/**
 * Async loader.
 */
public abstract class AsyncLoader<D> extends AsyncTaskLoader<D> {
    private static final String TAG = "ASYNC.LOADER";

From source file com.madgag.agit.AsyncLoader.java

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

From source file com.github.mobile.AsyncLoader.java

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

From source file it.gulch.linuxday.android.loaders.GlobalCacheLoader.java

/**
 * A Loader working with a global application cache instead of a local cache.
 * This allows to avoid starting a background thread if the result is already in cache.
 * You do NOT need to destroy this loader after the result has been delivered.
 * The cache will be checked each time the fragment is started.
 *

From source file com.webimageloader.sample.patterns.AsyncLoader.java

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

From source file eu.inmite.apps.smsjizdenka.framework.helper.WrappedAsyncTaskLoader.java

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

From source file com.github.mobile.android.AsyncLoader.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
 *

From source file com.mintplex.oeffioptimizer.BetterAsyncTaskLoader.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
 *