HomeSort by relevance Sort by last modified time
    Searched refs:photoUri (Results 1 - 25 of 25) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/
PhoneCallDetails.java 59 public final Uri photoUri;
72 Uri photoUri) {
84 this.photoUri = photoUri;
ContactPhotoManager.java 179 * @param photoUri The uri of the photo to load
185 * @param defaultProvider The provider of default avatars (this is used if photoUri doesn't
188 public abstract void loadPhoto(ImageView view, Uri photoUri, int requestedExtent,
195 public final void loadPhoto(ImageView view, Uri photoUri, int requestedExtent,
197 loadPhoto(view, photoUri, requestedExtent, darkTheme, DEFAULT_AVATAR);
204 public final void loadDirectoryPhoto(ImageView view, Uri photoUri, boolean darkTheme) {
205 loadPhoto(view, photoUri, -1, darkTheme, DEFAULT_AVATAR);
233 * @param photoUri The URI of the photo (for future requests).
237 public abstract void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes);
487 public void loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme
    [all...]
CallDetailActivity.java 421 final Uri photoUri = firstDetails.photoUri;
580 loadContactPhotos(photoUri);
614 final Uri photoUri;
627 photoUri = null;
634 photoUri = info.photoUri;
639 nameText, numberType, numberLabel, lookupUri, photoUri);
648 private void loadContactPhotos(Uri photoUri) {
649 mContactPhotoManager.loadPhoto(mContactBackgroundView, photoUri,
    [all...]
ContactLoader.java 203 String photoUri, String displayName, String altDisplayName, String phoneticName,
220 mPhotoUri = photoUri;
835 String photoUri = contactData.getPhotoUri();
836 if (photoUri != null) {
839 .openAssetFileDescriptor(Uri.parse(photoUri), "r");
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockContactPhotoManager.java 37 public void loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme,
60 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) {
  /frameworks/ex/chips/tests/src/com/android/ex/chips/
RecipientAlternatesAdapterTest.java 74 String photoUri,
78 contactId, dataId, photoUri, displayNameSource});
89 String photoUri,
99 assertEquals(photoUri, c.getString(6));
  /packages/apps/Contacts/src/com/android/contacts/calllog/
ContactInfo.java 38 public Uri photoUri;
68 if (!UriUtils.areEqual(photoUri, other.photoUri)) return false;
ContactInfoHelper.java 125 info.photoUri =
CallLogAdapter.java 715 info.photoUri = null; // We do not cache the photo URI.
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailPhotoSetter.java 82 Uri photoUri = null;
84 photoUri = Uri.parse(mContactData.getPhotoUri());
87 photoUri, mPhotoBitmap, mPhotoBytes, rect, delta, mContactData.isUserProfile(),
93 photoUri, mPhotoBitmap, mPhotoBytes);
ContactDetailDisplayUtils.java 235 String photoUri = null;
241 photoUri = firstPhoto.getPhotoUri();
248 if (photoUri != null) {
250 statusPhotoView, Uri.parse(photoUri), -1, false,
  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemPhotoEntry.java 37 public StreamItemPhotoEntry(long id, int sortIndex, long photoFileId, String photoUri,
42 mPhotoUri = photoUri;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 72 String photoUri;
87 if (photoUri != null) {
88 icon1 = photoUri.toString();
150 photoUri = null;
257 suggestion.photoUri = c.getString(2);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileView.java 128 mPhotoManager.loadPhoto(mPhoto, entry.photoUri, getApproximateImageSize(),
136 mPhotoManager.loadPhoto(mQuickContact, entry.photoUri,
ContactTileAdapter.java 255 String photoUri = cursor.getString(mPhotoUriIndex);
262 contact.photoUri = (photoUri != null ? Uri.parse(photoUri) : null);
675 public Uri photoUri;
ContactListAdapter.java 231 final Uri photoUri = photoUriString == null ? null : Uri.parse(photoUriString);
232 getPhotoLoader().loadDirectoryPhoto(view.getPhotoView(), photoUri, false);
ContactEntryListAdapter.java 652 final Uri photoUri = photoUriString == null ? null : Uri.parse(photoUriString);
653 getPhotoLoader().loadPhoto(quickContact, photoUri, -1, mDarkTheme);
  /packages/apps/Calendar/src/com/android/calendar/
ContactsAsyncHelper.java 191 AttendeeItem item, Runnable run, Uri photoUri) {
195 if (photoUri == null) {
206 args.uri = photoUri;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 782 String photoUri = data.getString(GroupEditorQuery.CONTACT_PHOTO_URI);
784 displayName, photoUri));
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java 256 * @param photoUri The URI of the current photo (may be null, in which case the default
270 public static Intent buildIntent(Context context, Uri photoUri, Bitmap photoBitmap,
274 if (photoUri != null && photoBitmap != null && photoBytes != null) {
275 intent.putExtra(PHOTO_URI, photoUri);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java     [all...]
LegacyContactsProviderTest.java 728 Uri photoUri = Uri.withAppendedPath(personUri, Photos.CONTENT_DIRECTORY);
729 mResolver.update(photoUri, values, null, null);
731 assertStoredValues(photoUri, values);
733 long photoId = Long.parseLong(getStoredValue(photoUri, Photos._ID));
741 assertStoredValues(photoUri, values);
781 Uri photoUri = Uri.withAppendedPath(personUri, Photos.CONTENT_DIRECTORY);
782 mResolver.update(photoUri, values, null, null);
    [all...]
  /frameworks/base/core/java/android/provider/
Contacts.java 593 Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY);
596 cr.update(photoUri, values, null, null);
607 Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY);
608 Cursor cursor = cr.query(photoUri, new String[]{Photos.DATA}, null, null, null);
    [all...]
ContactsContract.java     [all...]
  /packages/apps/Phone/src/com/android/phone/
CallCard.java     [all...]

Completed in 464 milliseconds