Home | History | Annotate | Download | only in mail

Lines Matching refs:Email

30 import android.provider.ContactsContract.CommonDataKinds.Email;
47 * A {@link Loader} to look up presence, contact URI, and photo data for a set of email
53 Email._ID, // 0
54 Email.DATA, // 1
55 Email.CONTACT_ID, // 2
56 Email.PHOTO_ID, // 3
102 * @param emails The email addresses of the sender images to return.
106 * @return A mapping of email to {@link ContactInfo}. How to interpret the map:
108 * <li>The email is missing from the key set or maps to null - The email was skipped. Try
131 .append(Data.MIMETYPE).append("='").append(Email.CONTENT_ITEM_TYPE)
132 .append("' AND ").append(Email.DATA).append(" IN (");
155 String email = cursor.getString(DATA_EMAIL_COLUMN);
164 photoIdMap.put(photoId, Pair.create(email, result));
166 results.put(email, result);
174 for (String email : emailsList) {
175 if (!results.containsKey(email)) {
176 results.put(email, new ContactInfo(null));
215 String email = prev.first;
223 results.put(email, new ContactInfo(prevResult.contactUri, photo));
226 results.put(email, new ContactInfo(prevResult.contactUri, photoBytes));