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 eu.geopaparazzi.library.database.RawSqlCursorLoader.java

public class RawSqlCursorLoader extends CursorLoader {
    final ForceLoadContentObserver mObserver;

    private Cursor mCursor;
    CancellationSignal mCancellationSignal;

From source file com.tct.fw.ex.photo.loaders.PhotoPagerLoader.java

/**
 * Loader for a set of photo IDs.
 */
public class PhotoPagerLoader extends CursorLoader {
    private final Uri mPhotosUri;
    private final String[] mProjection;

From source file com.silentcircle.contacts.GroupListLoader.java

/**
 * Group loader for the group list that includes details such as the number of contacts per group
 * and number of groups per account. This list is sorted by account type, account name, where the
 * group names are in alphabetical order. Note that the list excludes default, favorite, and deleted
 * groups.
 */

From source file com.silentcircle.contacts.GroupMetaDataLoader.java

/**
 * Group meta-data loader. Loads all groups or just a single group from the
 * database (if given a {@link Uri}).
 */
public final class GroupMetaDataLoader extends CursorLoader {

From source file com.silentcircle.contacts.list.ProfileAndContactsLoader.java

/**
 * A loader for use in the default contact list, which will also query for the user's profile
 * if configured to do so.
 */
public class ProfileAndContactsLoader extends CursorLoader {

From source file com.silentcircle.contacts.GroupMemberLoader.java

/**
 * Group Member loader. Loads all group members from the given groupId
 */
public final class GroupMemberLoader extends CursorLoader {

    public static class GroupEditorQuery {