HomeSort by relevance Sort by last modified time
    Searched defs:contactType (Results 1 - 4 of 4) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/util/
ImageViewDrawableSetter.java 145 int contactType = ContactPhotoManager.TYPE_DEFAULT;
148 contactType = ContactPhotoManager.TYPE_BUSINESS;
152 request = new DefaultImageRequest(null, mContact.getDisplayName(), contactType);
155 contactType);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java 637 int contactType = ContactPhotoManager.TYPE_DEFAULT;
640 contactType = ContactPhotoManager.TYPE_VOICEMAIL;
642 contactType = ContactPhotoManager.TYPE_BUSINESS;
657 setPhoto(views, photoUri, lookupUri, nameForDefaultImage, lookupKey, contactType);
659 setPhoto(views, photoId, lookupUri, nameForDefaultImage, lookupKey, contactType);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 146 if (request.contactType != TYPE_DEFAULT) {
148 String.valueOf(request.contactType));
166 String contactType = uri.getQueryParameter(CONTACT_TYPE_PARAM_KEY);
167 if (!TextUtils.isEmpty(contactType)) {
168 request.contactType = Integer.valueOf(contactType);
218 public int contactType = TYPE_DEFAULT;
245 public DefaultImageRequest(String displayName, String identifier, int contactType) {
246 this(displayName, identifier, contactType, SCALE_DEFAULT, OFFSET_DEFAULT);
249 public DefaultImageRequest(String displayName, String identifier, int contactType,
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java 636 final int contactType =
641 loadContactPhotos(photoUri, displayNameForDefaultImage, lookupKey, contactType);
    [all...]

Completed in 368 milliseconds