Example usage for android.support.v4.content Loader subclass-usage

List of usage examples for android.support.v4.content Loader subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.content Loader subclass-usage.

Usage

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

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

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

From source file com.ne1c.rainbowmvp.PresenterLoader.java

public class PresenterLoader<P extends BasePresenter> extends Loader<P> {
    private P mPresenter;

    private String mTagPresenter;

    public PresenterLoader(Context context, String tagPresenter) {

From source file me.xiaopan.android.inject.content.InjectLoader.java

/**
 * ??Loader
 */
public abstract class InjectLoader<T> extends Loader<T> {
    private Injector injector;

From source file me.xiaopan.androidinjector.content.InjectLoader.java

/**
 * ??Loader
 */
public abstract class InjectLoader<T> extends Loader<T> {
    private Injector injector;

From source file com.krialix.tardis.PresenterLoader.java

/**
 * The core class which handles of all {@link Presenter} lifecycle.
 *
 * @param <V> MvpView
 * @param <P> Presenter
 */

From source file org.dmfs.tasks.groupings.cursorloaders.CustomCursorLoader.java

/**
 * A very simple {@link Loader} that returns the {@link Cursor} from a {@link AbstractCustomCursorFactory}.
 * 
 * @author Marten Gajda <marten@dmfs.org>
 */
public class CustomCursorLoader extends Loader<Cursor> {

From source file com.granita.tasks.groupings.cursorloaders.CustomCursorLoader.java

/**
 * A very simple {@link Loader} that returns the {@link Cursor} from a {@link AbstractCustomCursorFactory}.
 * 
 * @author Marten Gajda <marten@dmfs.org>
 */
public class CustomCursorLoader extends Loader<Cursor> {

From source file com.propaneapps.tomorrow.loader.ObjectRetainLoader.java

/**
 * Loader class responsible for retaining specific object between orientation changes
 *
 * @param <T> Type of object to retain
 */
public class ObjectRetainLoader<T> extends Loader<T> {

From source file uk.co.bubblebearapps.motionaiclient.base.PresenterLoader.java

/**
 * Loader to supply a presenter to an activty or fragment. Using a loader allows the presenter to
 * be retained during configuration changes
 *
 * @param <T> the presenter class this loader will deliver
 */

From source file com.packpublishing.asynchronousandroid.chapter4.WhosOnlineLoader.java

public class WhosOnlineLoader extends Loader<List<String>> {

    private final String mChatRoom;
    private List<String> mResult = null;
    private static int cur = 0;