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 edu.openhsk.repository.SimpleCursorLoader.java

/**
 * Used to write apps that run on platforms prior to Android 3.0.  When running
 * on Android 3.0 or above, this implementation is still used; it does not try
 * to switch to the framework's implementation.  See the framework SDK
 * documentation for a class overview.
 *

From source file com.iaraby.db.helper.lib.SimpleCursorLoader.java

/**
 * Utility to use cursor loader without content provider
 * 
 * @author cristian
 *
 */

From source file mobisocial.omnistanford.db.SimpleCursorLoader.java

/**
 * Used to write apps that run on platforms prior to Android 3.0. When running
 * on Android 3.0 or above, this implementation is still used; it does not try
 * to switch to the framework's implementation. See the framework SDK
 * documentation for a class overview.
 *

From source file com.bryan.lib.util.AsyncLoader.java

/**
 * loader ???
 * ?
 * onCreateLoader
 * loader
 * onStartLoading

From source file org.mozilla.gecko.home.HomeConfigLoader.java

public class HomeConfigLoader extends AsyncTaskLoader<HomeConfig.State> {
    private final HomeConfig mConfig;
    private HomeConfig.State mConfigState;

    private final Context mContext;

From source file com.yahoo.squidb.support.SquidSupportCursorLoader.java

/**
 * A {@link CursorLoader} that queries a {@link SquidDatabase}. This version of SquidSupportCursorLoader uses the support
 * library instead of the base Android SDK.
 */
public class SquidSupportCursorLoader<T extends AbstractModel> extends AsyncTaskLoader<SquidCursor<T>> {

From source file org.droidparts.loader.AsyncTaskLoader.java

public abstract class AsyncTaskLoader<Result> extends android.support.v4.content.AsyncTaskLoader<Result> {

    public AsyncTaskLoader(Context ctx) {
        super(ctx);
        Injector.get().inject(ctx, this);
    }

From source file net.reichholf.dreamdroid.loader.AsyncByteLoader.java

/**
 * @author sre
 * 
 */
public class AsyncByteLoader extends AsyncTaskLoader<LoaderResult<byte[]>> {

From source file pt.aptoide.backupapps.SimpleCursorLoader.java

/**
 * Used to write apps that run on platforms prior to Android 3.0.  When running
 * on Android 3.0 or above, this implementation is still used; it does not try
 * to switch to the framework's implementation.  See the framework SDK
 * documentation for a class overview.
 *

From source file cm.aptoide.ptdev.utils.SimpleCursorLoader.java

/**
 * Used to write apps that run on platforms prior to Android 3.0.  When running
 * on Android 3.0 or above, this implementation is still used; it does not try
 * to switch to the framework's implementation.  See the framework SDK
 * documentation for a class overview.
 *