Home | History | Annotate | Download | only in provider

Lines Matching defs:Email

65  * as a phone number or email addresses.  The set of data kinds that can be
149 * For example, in an email composition screen, its implementation can specify an account when
166 * include persons contacted via phone (not email, sms, etc.)
189 * {@link CommonDataKinds.Email#CONTENT_URI Email.CONTENT_URI}, and
262 * in email and phone lookup functionalities, it should also implement
263 * {@link CommonDataKinds.Email#CONTENT_FILTER_URI CommonDataKinds.Email.CONTENT_FILTER_URI}
509 * allow creation of shortcuts for data items like email, phone or postal address,
1010 * of increasing priority: {@link #EMAIL}, {@link #PHONE},
1015 public static final int EMAIL = 10;
1032 * structured name or email address. See {@link DisplayNameSources}.
1039 * available information for the contact (for example, it might be the email address
1197 * <li>If you need to look up a contact by some data element like email
1806 public static final String PARAMETER_MATCH_EMAIL = "email";
2316 * Changes to the structured name, organization, phone number, email address,
4127 * {@link CommonDataKinds.Email Email.CONTENT_ITEM_TYPE}, then {@link #DATA1}
4128 * stores the email address.
4133 * {@link CommonDataKinds.Phone}, {@link CommonDataKinds.Email} etc. As a
4141 * case of a row representing email addresses {@link #DATA1} should probably
4142 * be used for the email address itself, while {@link #DATA2} etc can be
4143 * used for auxiliary information like type of email address.
4239 * .withValue(Email.DATA, "somebody@android.com")
4324 * <li>{@link CommonDataKinds.Email Email.CONTENT_ITEM_TYPE}</li>
4513 * the value of a single data element, such as the email address.
5356 * // For a contact with the email address (president@organization.com), the snippet
5360 * // For a contact with the email address (president@organization.com), the snippet
5908 * A data kind representing an email address.
5924 * <td>Email address itself.</td>
5950 public static final class Email implements DataColumnsWithJoins, CommonColumns,
5955 private Email() {}
5961 * The MIME type of {@link #CONTENT_URI} providing a directory of email addresses.
5975 * The content:// style URL for looking up data rows by email address. The
5976 * lookup argument, an email address, should be passed as an additional path segment
5981 * Uri uri = Uri.withAppendedPath(Email.CONTENT_LOOKUP_URI, Uri.encode(email));
5983 * new String[]{Email.CONTACT_ID, Email.DISPLAY_NAME, Email.DATA},
5993 * The content:// style URL for email lookup using a filter. The filter returns
5995 * to display names as well as email addresses. The filter argument should be passed
6001 * Uri uri = Uri.withAppendedPath(Email.CONTENT_LOOKUP_URI, Uri.encode("bob"));
6003 * new String[]{Email.DISPLAY_NAME, Email.DATA},
6012 * The email address.
6023 * The display name for the email address
7229 * to start communicating with a person ({@link Phone} and {@link Email}). Note that this
7233 * can use to initiate communications with another contact. {@link Phone} and {@link Email}
7935 * {@link ContactsContract.CommonDataKinds.Email#CONTENT_FILTER_URI},
8015 * Type of usage for text interaction involving longer messages, which includes email.
8023 * text chat with email addresses.
8400 * raw email address, such as one built using
8730 * The extra field for the contact email address.
8733 public static final String EMAIL = "email";
8736 * The extra field for the contact email type.
8738 * {@link CommonDataKinds.Email}
8744 * The extra field for the email isprimary flag.
8750 * The extra field for an optional second contact email address.
8756 * The extra field for an optional second contact email type.
8758 * {@link CommonDataKinds.Email}
8764 * The extra field for an optional third contact email address.
8770 * The extra field for an optional third contact email type.
8772 * {@link CommonDataKinds.Email}
8824 * like {@link CommonDataKinds.Email#TYPE Email.TYPE} may be automatically
8840 * row2.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
8841 * row2.put(Email.TYPE, Email.TYPE_CUSTOM);
8842 * row2.put(Email.LABEL, "Green Bot");
8843 * row2.put(Email.ADDRESS, "android@android.com");