Home | History | Annotate | Download | only in provider

Lines Matching defs:Email

66  * as a phone number or email addresses.  The set of data kinds that can be
150 * For example, in an email composition screen, its implementation can specify an account when
167 * include persons contacted via phone (not email, sms, etc.)
191 * {@link CommonDataKinds.Email#CONTENT_URI}, and
317 * in email and phone lookup functionalities, it should also implement
318 * {@link CommonDataKinds.Email#CONTENT_FILTER_URI CommonDataKinds.Email.CONTENT_FILTER_URI}
564 * allow creation of shortcuts for data items like email, phone or postal address,
1061 * of increasing priority: {@link #EMAIL}, {@link #PHONE},
1066 public static final int EMAIL = 10;
1083 * structured name or email address. See {@link DisplayNameSources}.
1090 * available information for the contact (for example, it might be the email address
1238 * <li>If you need to look up a contact by some data element like email
1779 public static final String PARAMETER_MATCH_EMAIL = "email";
2285 * Changes to the structured name, organization, phone number, email address,
3900 * {@link CommonDataKinds.Email Email.CONTENT_ITEM_TYPE}, then {@link #DATA1}
3901 * stores the email address.
3906 * {@link CommonDataKinds.Phone}, {@link CommonDataKinds.Email} etc. As a
3914 * case of a row representing email addresses {@link #DATA1} should probably
3915 * be used for the email address itself, while {@link #DATA2} etc can be
3916 * used for auxiliary information like type of email address.
4012 * .withValue(Email.DATA, "somebody@android.com")
4097 * <li>{@link CommonDataKinds.Email Email.CONTENT_ITEM_TYPE}</li>
4286 * the value of a single data element, such as the email address.
5621 * A data kind representing an email address.
5637 * <td>Email address itself.</td>
5663 public static final class Email implements DataColumnsWithJoins, CommonColumns {
5667 private Email() {}
5673 * The MIME type of {@link #CONTENT_URI} providing a directory of email addresses.
5687 * The content:// style URL for looking up data rows by email address. The
5688 * lookup argument, an email address, should be passed as an additional path segment
5693 * Uri uri = Uri.withAppendedPath(Email.CONTENT_LOOKUP_URI, Uri.encode(email));
5695 * new String[]{Email.CONTACT_ID, Email.DISPLAY_NAME, Email.DATA},
5705 * The content:// style URL for email lookup using a filter. The filter returns
5707 * to display names as well as email addresses. The filter argument should be passed
5713 * Uri uri = Uri.withAppendedPath(Email.CONTENT_LOOKUP_URI, Uri.encode("bob"));
5715 * new String[]{Email.DISPLAY_NAME, Email.DATA},
5724 * The email address.
5735 * The display name for the email address
6921 * to start communicating with a person ({@link Phone} and {@link Email}). Note that this
6925 * can use to initiate communications with another contact. {@link Phone} and {@link Email}
7630 * {@link ContactsContract.CommonDataKinds.Email#CONTENT_FILTER_URI},
7710 * Type of usage for text interaction involving longer messages, which includes email.
7718 * text chat with email addresses.
8140 * raw email address, such as one built using
8455 * The extra field for the contact email address.
8458 public static final String EMAIL = "email";
8461 * The extra field for the contact email type.
8463 * {@link CommonDataKinds.Email}
8469 * The extra field for the email isprimary flag.
8475 * The extra field for an optional second contact email address.
8481 * The extra field for an optional second contact email type.
8483 * {@link CommonDataKinds.Email}
8489 * The extra field for an optional third contact email address.
8495 * The extra field for an optional third contact email type.
8497 * {@link CommonDataKinds.Email}
8549 * like {@link CommonDataKinds.Email#TYPE Email.TYPE} may be automatically
8565 * row2.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
8566 * row2.put(Email.TYPE, Email.TYPE_CUSTOM);
8567 * row2.put(Email.LABEL, "Green Bot");
8568 * row2.put(Email.ADDRESS, "android@android.com");