Home | History | Annotate | Download | only in common

Lines Matching refs:CursorLoader

19 import android.content.CursorLoader;
26 * Used to create {@link CursorLoader}s to load different groups of
73 public static CursorLoader createStrequentLoader(Context context) {
74 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null,
78 public static CursorLoader createStrequentPhoneOnlyLoader(Context context) {
82 return new CursorLoader(context, uri, COLUMNS_PHONE_ONLY, null, null, null);
85 public static CursorLoader createStarredLoader(Context context) {
86 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, Contacts.STARRED + "=?",
90 public static CursorLoader createFrequentLoader(Context context) {
91 return new CursorLoader(context, Contacts.CONTENT_FREQUENT_URI, COLUMNS,