Home | History | Annotate | Download | only in provider

Lines Matching refs: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,
1053 * of increasing priority: {@link #EMAIL}, {@link #PHONE},
1058 public static final int EMAIL = 10;
1075 * structured name or email address. See {@link DisplayNameSources}.
1082 * available information for the contact (for example, it might be the email address
1230 * <li>If you need to look up a contact by some data element like email
1771 public static final String PARAMETER_MATCH_EMAIL = "email";
2277 * Changes to the structured name, organization, phone number, email address,
3892 * {@link CommonDataKinds.Email Email.CONTENT_ITEM_TYPE}, then {@link #DATA1}
3893 * stores the email address.
3898 * {@link CommonDataKinds.Phone}, {@link CommonDataKinds.Email} etc. As a
3906 * case of a row representing email addresses {@link #DATA1} should probably
3907 * be used for the email address itself, while {@link #DATA2} etc can be
3908 * used for auxiliary information like type of email address.
4004 * .withValue(Email.DATA, "somebody@android.com")
4089 * <li>{@link CommonDataKinds.Email Email.CONTENT_ITEM_TYPE}</li>
4278 * the value of a single data element, such as the email address.
5614 * A data kind representing an email address.
5630 * <td>Email address itself.</td>
5656 public static final class Email implements DataColumnsWithJoins, CommonColumns {
5660 private Email() {}
5666 * The MIME type of {@link #CONTENT_URI} providing a directory of email addresses.
5680 * The content:// style URL for looking up data rows by email address. The
5681 * lookup argument, an email address, should be passed as an additional path segment
5686 * Uri uri = Uri.withAppendedPath(Email.CONTENT_LOOKUP_URI, Uri.encode(email));
5688 * new String[]{Email.CONTACT_ID, Email.DISPLAY_NAME, Email.DATA},
5698 * The content:// style URL for email lookup using a filter. The filter returns
5700 * to display names as well as email addresses. The filter argument should be passed
5706 * Uri uri = Uri.withAppendedPath(Email.CONTENT_LOOKUP_URI, Uri.encode("bob"));
5708 * new String[]{Email.DISPLAY_NAME, Email.DATA},
5717 * The email address.
5728 * The display name for the email address
6914 * to start communicating with a person ({@link Phone} and {@link Email}). Note that this
6918 * can use to initiate communications with another contact. {@link Phone} and {@link Email}
7623 * {@link ContactsContract.CommonDataKinds.Email#CONTENT_FILTER_URI},
7703 * Type of usage for text interaction involving longer messages, which includes email.
7711 * text chat with email addresses.
8001 * raw email address, such as one built using
8316 * The extra field for the contact email address.
8319 public static final String EMAIL = "email";
8322 * The extra field for the contact email type.
8324 * {@link CommonDataKinds.Email}
8330 * The extra field for the email isprimary flag.
8336 * The extra field for an optional second contact email address.
8342 * The extra field for an optional second contact email type.
8344 * {@link CommonDataKinds.Email}
8350 * The extra field for an optional third contact email address.
8356 email type.
8358 * {@link CommonDataKinds.Email}
8410 * like {@link CommonDataKinds.Email#TYPE Email.TYPE} may be automatically
8426 * row2.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
8427 * row2.put(Email.TYPE, Email.TYPE_CUSTOM);
8428 * row2.put(Email.LABEL, "Green Bot");
8429 * row2.put(Email.ADDRESS, "android@android.com");