HomeSort by relevance Sort by last modified time
    Searched refs:CursorLoader (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsListLoader.java 20 import android.content.CursorLoader;
46 public static CursorLoader newVisibleContactsLoader(Context context) {
47 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS,
51 public static CursorLoader newStrequentContactsLoader(Context context) {
52 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null, null);
55 public static CursorLoader newContactGroupLoader(Context context, String groupTitle) {
57 return new CursorLoader(context, uri, COLUMNS, null, null, Contacts.SORT_KEY_PRIMARY);
GroupsListLoader.java 20 import android.content.CursorLoader;
26 public class GroupsListLoader extends CursorLoader {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactTileLoaderFactory.java 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
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CursorLoaderTest.java 5 import android.support.v4.content.CursorLoader;
22 CursorLoader cursorLoader = new CursorLoader(new Activity(),
29 assertThat(cursorLoader.getUri(), equalTo(uri));
30 assertThat(cursorLoader.getProjection(), equalTo(projection));
31 assertThat(cursorLoader.getSelection(), equalTo(selection));
32 assertThat(cursorLoader.getSelectionArgs(), equalTo(selectionArgs));
33 assertThat(cursorLoader.getSortOrder(), equalTo(sortOrder));
43 CursorLoader cursorLoader = new CursorLoader(new Activity())
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
PhotoPagerLoader.java 23 import android.support.v4.content.CursorLoader;
30 public class PhotoPagerLoader extends CursorLoader {
  /packages/apps/Contacts/src/com/android/contacts/
GroupListLoader.java 19 import android.content.CursorLoader;
29 public final class GroupListLoader extends CursorLoader {
GroupMetaDataLoader.java 19 import android.content.CursorLoader;
27 public final class GroupMetaDataLoader extends CursorLoader {
GroupMemberLoader.java 19 import android.content.CursorLoader;
35 public final class GroupMemberLoader extends CursorLoader {
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactLoader.java 19 import android.content.CursorLoader;
31 public class JoinContactLoader extends CursorLoader {
41 * Note we can't change the result type of this loader itself, because CursorLoader
LegacyContactListAdapter.java 20 import android.content.CursorLoader;
58 public void configureLoader(CursorLoader loader, long directoryId) {
LegacyPhoneNumberListAdapter.java 20 import android.content.CursorLoader;
62 public void configureLoader(CursorLoader loader, long directoryId) {
LegacyPostalAddressListAdapter.java 20 import android.content.CursorLoader;
62 public void configureLoader(CursorLoader loader, long directoryId) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorLoader.java 5 import android.support.v4.content.CursorLoader;
10 @Implements(CursorLoader.class)
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 20 import android.content.CursorLoader;
24 public class BookmarksLoader extends CursorLoader {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ProfileAndContactsLoader.java 19 import android.content.CursorLoader;
34 public class ProfileAndContactsLoader extends CursorLoader {
DefaultContactListAdapter.java 20 import android.content.CursorLoader;
56 public void configureLoader(CursorLoader loader, long directoryId) {
105 protected void configureUri(CursorLoader loader, long directoryId, ContactListFilter filter) {
137 CursorLoader loader, long directoryId, ContactListFilter filter) {
  /packages/apps/Email/src/com/android/email/data/
ThrottlingCursorLoader.java 23 import android.content.CursorLoader;
30 * A {@link CursorLoader} variant that throttle auto-requery on content changes using
33 public class ThrottlingCursorLoader extends CursorLoader {
  /frameworks/base/core/java/android/content/
CursorLoader.java 35 * <p>A CursorLoader must be built with the full information for the query to
37 * {@link #CursorLoader(Context, Uri, String[], String, String[], String)} or
38 * creating an empty instance with {@link #CursorLoader(Context)} and filling
43 public class CursorLoader extends AsyncTaskLoader<Cursor> {
119 * Creates an empty unspecified CursorLoader. You must follow this with
123 public CursorLoader(Context context) {
129 * Creates a fully-specified CursorLoader. See
134 public CursorLoader(Context context, Uri uri, String[] projection, String selection,
  /frameworks/support/v4/java/android/support/v4/content/
CursorLoader.java 29 * Static library support version of the framework's {@link android.content.CursorLoader}.
35 public class CursorLoader extends AsyncTaskLoader<Cursor> {
82 * Creates an empty unspecified CursorLoader. You must follow this with
86 public CursorLoader(Context context) {
92 * Creates a fully-specified CursorLoader. See
97 public CursorLoader(Context context, Uri uri, String[] projection, String selection,
  /developers/samples/android/content/contacts/BasicContactables/BasicContactables/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 21 import android.content.CursorLoader;
70 return new CursorLoader(
135 public void onLoaderReset(Loader<Cursor> cursorLoader) {
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoSetLoader.java 20 import android.content.CursorLoader;
34 public class PhotoSetLoader extends CursorLoader implements LoaderCompatShim<Cursor> {
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ChangedContacts.java 23 import android.content.CursorLoader;
169 private CursorLoader getChangeLoader() {
181 return new CursorLoader(this, ContactsContract.Data.CONTENT_URI, projection,
186 private CursorLoader getDeleteLoader() {
196 return new CursorLoader(this, ContactsContract.DeletedContacts.CONTENT_URI, projection,
202 public void onLoadFinished(Loader<Cursor> cursorLoader, Cursor data) {
206 switch (cursorLoader.getId()) {
242 public void onLoaderReset(Loader<Cursor> cursorLoader) {
244 switch (cursorLoader.getId()) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 24 import android.content.CursorLoader;
43 * Demonstration of the use of a CursorLoader to load and display contacts
186 // Now create and return a CursorLoader that will take care of
191 return new CursorLoader(getActivity(), baseUri,
LoaderRetained.java 26 import android.content.CursorLoader;
45 * Demonstration of the use of a CursorLoader to load and display contacts
191 // Now create and return a CursorLoader that will take care of
196 return new CursorLoader(getActivity(), baseUri,
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 21 import android.content.CursorLoader;
126 // Now create and return a CursorLoader that will take care of
131 return new CursorLoader(getActivity(), baseUri,

Completed in 1075 milliseconds

1 2 3 4