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.filepager.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 ja.keystore00.wallet.ui.WalletBalanceLoader.java

/**
 * @author Andreas Schildbach
 */
public final class WalletBalanceLoader extends AsyncTaskLoader<BigInteger> {
    private final Wallet wallet;

From source file pt.up.mobile.loaders.FriendsLoader.java

/**
 * Static library support version of the framework's
 * {@link android.content.CursorLoader}. 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 ca.rmen.android.poetassistant.main.dictionaries.ResultListLoader.java

public abstract class ResultListLoader<T> extends AsyncTaskLoader<T> {

    private static final String TAG = Constants.TAG + ResultListLoader.class.getSimpleName();

    private T mResult;

From source file net.illusor.swipeplayer.fragments.AudioFoldersLoader.java

/**
 * Gets the list of music folders, contained into the current directory
 */
class AudioFoldersLoader extends AsyncTaskLoader<AudioPlaylist> {
    private final File directory;
    private AudioPlaylist result;

From source file nz.ac.otago.psyanlab.common.util.SimpleCursorLoader.java

/**
 * Used to write applications 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 org.gateshipone.odyssey.loaders.AlbumLoader.java

public class AlbumLoader extends AsyncTaskLoader<List<AlbumModel>> {

    private final Context mContext;

    /**
     * The artist id if albums of a specific artist should be loaded.

From source file org.wahtod.wififixer.ui.LogLoader.java

/**
 * Created by zanshin on 8/6/14.
 */
public class LogLoader extends AsyncTaskLoader<String> {

    protected LogOpenHelper mLogger;

From source file com.guldencoin.androidwallet.nlg.ui.WalletBalanceLoader.java

/**
 * @author Andreas Schildbach
 */
public final class WalletBalanceLoader extends AsyncTaskLoader<BigInteger> {
    private final Wallet wallet;

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

public class BitcoinExchangeRateLoader extends AsyncTaskLoader<Double> {

    private Double mExchangeRate = null;
    private long mRefreshinterval;
    private Handler mHandler;
    private String mCurrency;