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.mobilejazz.coltrane.library.FileLoader.java

/**
 * Loader that returns a list of Files in a given file path.
 * 
 * @version 2013-12-11
 * @author paulburke (ipaulpro)
 */

From source file com.shalzz.attendance.loader.DayAsyncTaskLoader.java

public class DayAsyncTaskLoader extends AsyncTaskLoader<Day> {

    private DatabaseHandler mDb;
    private Date mDate;
    private Day mDay;

From source file org.uab.deic.uabdroid.solutions.unit4.DatabaseCursorLoader.java

public class DatabaseCursorLoader extends AsyncTaskLoader<Cursor> {
    private DatabaseAdapter mDatabaseAdapter;
    private DatabaseReceiver mDatabaseReceiver;
    private Cursor mCursor;

    // When constructed, we open the database

From source file br.com.cybereagle.androidlibrary.loader.CustomCursorLoader.java

/**
 * Implementao que converte automaticamente Cursor em Objetos atravs de um conversor.
 */
public abstract class CustomCursorLoader<T extends CursorCarrier> extends AsyncTaskLoader<T> {
    protected final ForceLoadContentObserver observer;

From source file org.hisp.dhis.mobile.datacapture.io.AbsCursorLoader.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 org.jboss.aerogear.android.authentication.impl.loader.support.AbstractSupportAuthenticationLoader.java

/**
 * This class provides a reference to the callback, authentication module, and
 * possible exceptions for the authentication loaders, modules, and call backs
 * which may use it.
 *
 * This class and its subclasses use the Loaders from android.support and will

From source file com.shalzz.attendance.loader.SubjectAsyncTaskLoader.java

public class SubjectAsyncTaskLoader extends AsyncTaskLoader<List<Subject>> {

    private DatabaseHandler mDb;
    private List<Subject> mSubjects;

    // If non-null, this is the current filter the user has provided.

From source file org.uab.deic.uabdroid.loaders.DatabaseCursorLoader.java

/**
 * 
 * @author Ruben Serrano
 *
 */
//As there is no Loader that enables us to load data asyncrhonously

From source file com.deange.textfaker.content.ormlite.OrmLiteLoader.java

public class OrmLiteLoader<T extends BaseModel> extends AsyncTaskLoader<Cursor> {

    final QueryBuilder<T, Long> mQueryBuilder;
    final Class<T> mClazz;

    public OrmLiteLoader(final Context context, final Class<T> clazz, final QueryBuilder<T, Long> queryBuilder) {

From source file hashengineering.digitalcoin.wallet.ui.WalletBalanceLoader.java

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