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 com.oldfriend.group.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.lambdasoup.quickfit.ui.SchedulesLoader.java

/**
 * Loader for the schedule items belonging to a single workout
 */
public class SchedulesLoader extends CursorLoader {
    public SchedulesLoader(Context context, long workoutId) {
        super(context, QuickFitContentProvider.getUriWorkoutsId(workoutId),

From source file com.btmura.android.reddit.content.AccountSubredditListLoader.java

public class AccountSubredditListLoader extends CursorLoader {

    private static final String[] PROJECTION = { Subreddits._ID, Subreddits.COLUMN_NAME };

    public AccountSubredditListLoader(Context context, String accountName) {
        super(context, SubredditProvider.SUBREDDITS_URI, PROJECTION, Subreddits.SELECT_BY_ACCOUNT_NOT_DELETED,

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

/**
 * CursorLoader that initializes a ContactsDatabase instance
 *
 * @author Jake McGinty
 */
public class ContactsCursorLoader extends CursorLoader {

From source file uk.co.senab.photup.util.PhotupCursorLoader.java

public class PhotupCursorLoader extends CursorLoader {

    private final boolean mRequeryOnChange;

    public PhotupCursorLoader(Context context, Uri uri, String[] projection, String selection,
            String[] selectionArgs, String sortOrder, boolean requeryOnChange) {

From source file com.stockbrowser.BookmarksLoader.java

public class BookmarksLoader extends CursorLoader {
    public static final String ARG_ACCOUNT_TYPE = "acct_type";
    public static final String ARG_ACCOUNT_NAME = "acct_name";

    public static final int COLUMN_INDEX_ID = 0;
    public static final int COLUMN_INDEX_URL = 1;

From source file com.qiscus.sdk.filepicker.cursor.PhotoDirectoryLoader.java

public class PhotoDirectoryLoader extends CursorLoader {
    private static final String[] IMAGE_PROJECTION = { Media._ID, Media.DATA, Media.BUCKET_ID,
            Media.BUCKET_DISPLAY_NAME, Media.DATE_ADDED, Media.TITLE };

    public PhotoDirectoryLoader(Context context, Bundle args) {
        super(context);

From source file org.runnerup.util.SimpleCursorLoader.java

@TargetApi(Build.VERSION_CODES.FROYO)
public class SimpleCursorLoader extends android.support.v4.content.CursorLoader {

    private final SQLiteDatabase mDB;
    private final String mTable;
    private final ForceLoadContentObserver mObserver;

From source file com.laevatein.internal.loader.AlbumLoader.java

/**
 * Wrapper for {@link android.support.v4.content.CursorLoader} to merge custom cursors.
 * @author KeithYokoma
 * @since 2014/03/26
 * @version 1.0.0
 * @hide

From source file au.com.cybersearch2.classycontent.SearchCursorLoader.java

/**
 * SearchCursorLoader
 * CursorLoader for Search Suggestions
 * @author Andrew Bowley
 * 25/07/2014
 */