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.gateshipone.malp.application.loaders.ArtistsLoader.java

public class ArtistsLoader extends Loader<List<MPDArtist>> {

    private MPDResponseArtistList pArtistResponseHandler;

    private boolean mUseAlbumArtists;

From source file org.gateshipone.malp.application.loaders.FilesLoader.java

/**
 * Loads a list of files, directories and playlists from the MPDQueryHandler
 */
public class FilesLoader extends Loader<List<MPDFileEntry>> {
    private FilesResponseHandler mFilesResponseHandler;

From source file org.gateshipone.malp.application.loaders.PlaylistTrackLoader.java

/**
 * Loader class for albumtracks and artist album tracks
 */
public class PlaylistTrackLoader extends Loader<List<MPDFileEntry>> {
    /**
     * Response handler used for the asynchronous callback of the networking thread

From source file org.gateshipone.malp.application.loaders.AlbumTracksLoader.java

/**
 * Loader class for albumtracks and artist album tracks
 */
public class AlbumTracksLoader extends Loader<List<MPDFileEntry>> {
    /**
     * Response handler used for the asynchronous callback of the networking thread

From source file tv.loilo.promise.support.PromiseLoader.java

/**
 * Base class for android.support.v4.content.Loader for using tv.loilo.promise.Promise.
 *
 * @param <TData> the specified type of a success value
 */
public abstract class PromiseLoader<TData> extends Loader<Result<TData>> {

From source file org.gateshipone.malp.application.loaders.PlaylistsLoader.java

public class PlaylistsLoader extends Loader<List<MPDFileEntry>> {

    private PlaylistResponseHandler mPlaylistResponseHandler;

    Context mContext;
    boolean mAddHeader;

From source file org.gateshipone.malp.application.loaders.SearchResultLoader.java

/**
 * Loader class for search result tracks
 */
public class SearchResultLoader extends Loader<List<MPDFileEntry>> {
    /**
     * Response handler used for the asynchronous callback of the networking thread

From source file com.kohoh.AsyncTaskLoader.java

/**
 * Static library support version of the framework's {@link android.content.AsyncTaskLoader}.
 * 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.facebook.picker.GraphObjectPagingLoader.java

class GraphObjectPagingLoader extends Loader<GraphObjectCursor> {
    private GraphRequest originalRequest;
    private GraphRequest currentRequest;
    private GraphRequest nextRequest;
    private OnErrorListener onErrorListener;
    private GraphObjectCursor cursor;

From source file com.example.scrumptious.picker.GraphObjectPagingLoader.java

class GraphObjectPagingLoader extends Loader<GraphObjectCursor> {
    private GraphRequest originalRequest;
    private GraphRequest currentRequest;
    private GraphRequest nextRequest;
    private OnErrorListener onErrorListener;
    private GraphObjectCursor cursor;