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

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

Introduction

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

Usage

From source file io.valuesfeng.picker.loader.PictureLoader.java

/**
 * @author KeithYokoma
 * @version 1.0.0
 * @hide
 * @since 2014/03/27
 *

From source file com.matthewmitchell.nubits_android_wallet.ui.ExchangeRateLoader.java

/**
 * @author Andreas Schildbach
 */
public final class ExchangeRateLoader extends CursorLoader implements OnSharedPreferenceChangeListener {
    private final Configuration config;

From source file de.schildbach.litecoinwallet.ui.ExchangeRateLoader.java

/**
 * @author Andreas Schildbach
 */
public final class ExchangeRateLoader extends CursorLoader implements OnSharedPreferenceChangeListener {
    private final SharedPreferences prefs;

From source file com.matthewmitchell.peercoin_android_wallet.ui.ExchangeRateLoader.java

/**
 * @author Andreas Schildbach
 */
public final class ExchangeRateLoader extends CursorLoader implements OnSharedPreferenceChangeListener {
    private final Configuration config;

From source file com.zhihu.matisse.internal.loader.AlbumLoader.java

/**
 * Load all albums (grouped by bucket_id) into a single cursor.
 */
public class AlbumLoader extends CursorLoader {
    public static final String COLUMN_COUNT = "count";
    private static final Uri QUERY_URI = MediaStore.Files.getContentUri("external");

From source file com.xiuxiu.selector.internal.loader.AlbumLoader.java

/**
 * Load all albums (grouped by bucket_id) into a single cursor.
 */
public class AlbumLoader extends CursorLoader {
    public static final String COLUMN_COUNT = "count";
    private static final Uri QUERY_URI = MediaStore.Files.getContentUri("external");

From source file com.xbm.android.matisse.internal.loader.AlbumLoader.java

/**
 * Load all albums (grouped by bucket_id) into a single cursor.
 */
public class AlbumLoader extends CursorLoader {
    public static final String COLUMN_COUNT = "count";
    private static final Uri QUERY_URI = MediaStore.Files.getContentUri("external");

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

/**
 * @author Andreas Schildbach
 */
public final class ExchangeRateLoader extends CursorLoader implements OnSharedPreferenceChangeListener {
    private final SharedPreferences prefs;

From source file com.securecomcode.voice.contacts.ContactsCursorLoader.java

public class ContactsCursorLoader extends CursorLoader {

    public static final String ID_COLUMN = ContactsContract.CommonDataKinds.Phone._ID;
    public static final String NAME_COLUMN = ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME;
    public static final String NUMBER_TYPE_COLUMN = ContactsContract.CommonDataKinds.Phone.TYPE;
    public static final String NUMBER_COLUMN = ContactsContract.CommonDataKinds.Phone.NUMBER;

From source file se.chalmers.watchme.database.GenericCursorLoader.java

public class GenericCursorLoader extends CursorLoader {

    private final ForceLoadContentObserver mObserver;
    private Uri mUri;

    private String mSortOrder;