Home | History | Annotate | Download | only in provider

Lines Matching defs:Contacts

38  * The Contacts provider stores all information about contacts.
41 * access multiple accounts and support aggregation of similar contacts. These APIs continue to
46 public class Contacts {
47 private static final String TAG = "Contacts";
53 public static final String AUTHORITY = "contacts";
96 private Contacts() {}
154 Uri.parse("content://contacts/settings");
272 * @hide Used only in Contacts application for now.
355 Uri.parse("content://contacts/people");
364 Uri.parse("content://contacts/people/filter");
368 * contacts.
373 Uri.parse("content://contacts/deleted_people");
382 * Not exposed because we expect significant changes in the contacts
389 Uri.parse("content://contacts/people/with_email_or_im_filter");
479 * Adds a person to the My Contacts group.
484 * @throws IllegalStateException if the My Contacts group can't be found
491 throw new IllegalStateException("Failed to find the My Contacts group");
523 throw new IllegalStateException("Failed to find the My Contacts group");
551 * Creates a new contacts and adds it to the "My Contacts" group.
593 Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY);
607 Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY);
806 Uri.parse("content://contacts/groups");
815 Uri.parse("content://contacts/deleted_groups");
847 * The "My Contacts" system group.
851 public static final String GROUP_MY_CONTACTS = "Contacts";
996 Uri.parse("content://contacts/phones");
1004 Uri.parse("content://contacts/phones/filter");
1054 Uri.parse("content://contacts/groupmembership");
1062 Uri.parse("content://contacts/groupmembershipraw");
1341 //NOTE: update Contacts.java with new providers when they're added.
1473 Uri.parse("content://contacts/contact_methods");
1481 Uri.parse("content://contacts/contact_methods/email");
1493 * multiple {@link Contacts#KIND_EMAIL} entries.
1501 * multiple {@link Contacts#KIND_POSTAL} entries.
1509 * {@link Contacts#KIND_EMAIL} entry.
1517 * {@link Contacts#KIND_POSTAL} entry.
1526 * {@link Contacts#KIND_IM} entry.
1549 * The IM presence columns with some contacts specific columns mixed in.
1584 * {@link Contacts.ContactMethods#encodePredefinedImProtocol} or
1585 * {@link Contacts.ContactMethods#encodeCustomImProtocol}.
1611 * Contains presence information about contacts.
1624 Uri.parse("content://contacts/presence");
1644 case Contacts.People.AVAILABLE:
1647 case Contacts.People.IDLE:
1648 case Contacts.People.AWAY:
1651 case Contacts.People.DO_NOT_DISTURB:
1654 case Contacts.People.INVISIBLE:
1657 case Contacts.People.OFFLINE:
1788 Uri.parse("content://contacts/organizations");
1879 public static final Uri CONTENT_URI = Uri.parse("content://contacts/photos");
1935 Uri.parse("content://contacts/extensions");
1971 * that involve contacts.
2021 * contact with the provided details filled in. If multiple contacts
2035 * create activity if there are no contacts to show.
2080 * Intents related to the Contacts app UI.
2093 * The action for the default contacts list tab.
2100 * The action for the contacts list tab.
2115 * The action for the all contacts list tab.
2123 * The action for the contacts with phone numbers list tab.
2131 * The action for the starred contacts list tab.
2139 * The action for the frequent contacts list tab.
2147 * The action for the "strequent" contacts list tab. It first lists the starred
2148 * contacts in alphabetical order and then the frequent contacts in descending
2166 * Activity Action: Display a filtered list of contacts
2266 * <P>Type: Either an integer value from {@link android.provider.Contacts.PhonesColumns PhonesColumns},
2293 * <P>Type: Either an integer value from {@link android.provider.Contacts.PhonesColumns PhonesColumns},
2312 * <P>Type: Either an integer value from {@link android.provider.Contacts.PhonesColumns PhonesColumns},
2330 * <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns}
2357 * <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns}
2376 * <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns}
2394 * <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns}
2419 * <P>Type: the result of {@link Contacts.ContactMethods#encodePredefinedImProtocol}
2420 * or {@link Contacts.ContactMethods#encodeCustomImProtocol}.</P>