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.joulespersecond.seattlebusbot.ArrivalsListLoader.java

class ArrivalsListLoader extends AsyncTaskLoader<ObaArrivalInfoResponse> {

    private final String mStopId;

    private ObaArrivalInfoResponse mLastGoodResponse;

From source file com.btmura.android.reddit.content.CaptchaLoader.java

public class CaptchaLoader extends AsyncTaskLoader<CaptchaResult> {

    public static final String TAG = "CaptchaLoader";

    public static class CaptchaResult {
        public String iden;

From source file com.michaelrnovak.objectcursor.ObjectCursorLoader.java

public class ObjectCursorLoader<T> extends AsyncTaskLoader<ObjectCursor<T>> {
    final String[] mProjection;
    final String mSelection;
    final String[] mSelectionArgs;
    final String mSortOrder;

From source file com.V4Creations.vtulife.afilechooser.FileLoader.java

/**
 * Loader that returns a list of Files in a given file path.
 * 
 * @version 2012-10-28
 * 
 * @author paulburke (ipaulpro)

From source file org.fourthline.android.feeds.filechooser.FileLoader.java

/**
 * Loader that returns a list of Files in a given file path.
 *
 * @author paulburke (ipaulpro)
 * @author Christian Bauer
 */

From source file net.meiolania.apps.habrahabr.fragments.posts.loader.PostCommentsLoader.java

public class PostCommentsLoader extends AsyncTaskLoader<ArrayList<CommentsData>> {
    private String url;
    private ArrayList<CommentsData> commentsDatas = new ArrayList<CommentsData>();
    private HashSet<String> containedComments = new HashSet<String>();

    public PostCommentsLoader(Context context, String url) {

From source file org.gateshipone.odyssey.loaders.TrackLoader.java

public class TrackLoader extends AsyncTaskLoader<List<TrackModel>> {

    private final Context mContext;

    /**
     * The album key if tracks of a specific album should be loaded.

From source file jp.co.tweetmap.util.StationInfoLoader.java

/**
 * Get the nearest station information in the asynchronous processing in WebAPI.
 * Parse the body of the response
 *
 */
public class StationInfoLoader extends AsyncTaskLoader<String> {

From source file com.example.android.architecture.blueprints.todoapp.data.source.TasksLoader.java

/**
 * Custom {@link android.content.Loader} for a list of {@link Task}, using the
 * {@link TasksRepository} as its source. This Loader is a {@link AsyncTaskLoader} so it queries
 * the data asynchronously.
 */
public class TasksLoader extends AsyncTaskLoader<List<Task>> implements TasksRepository.TasksRepositoryObserver {

From source file com.github.pennyfive.cinemafinlando.ui.ApiQueryLoader.java

/**
 * For querying {@link FinnkinoService} using Loader framework.
 */
public final class ApiQueryLoader<T> extends AsyncTaskLoader<T> {
    @Inject
    FinnkinoService service;