Searched defs:photoUri (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/
H A DPhoneCallDetails.java59 public final Uri photoUri; field in class:PhoneCallDetails
72 Uri photoUri) {
84 this.photoUri = photoUri;
69 PhoneCallDetails(CharSequence number, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration, CharSequence name, int numberType, CharSequence numberLabel, Uri contactUri, Uri photoUri) argument
H A DCallDetailActivity.java385 final Uri photoUri = firstDetails.photoUri;
536 loadContactPhotos(photoUri);
570 final Uri photoUri;
583 photoUri = null;
590 photoUri = info.photoUri;
595 nameText, numberType, numberLabel, lookupUri, photoUri);
604 private void loadContactPhotos(Uri photoUri) { argument
605 mContactPhotoManager.loadPhoto(mContactBackgroundView, photoUri, tru
[all...]
H A DContactPhotoManager.java145 public abstract void loadPhoto(ImageView view, Uri photoUri, boolean hires, boolean darkTheme, argument
152 public final void loadPhoto(ImageView view, Uri photoUri, boolean hires, boolean darkTheme) { argument
153 loadPhoto(view, photoUri, hires, darkTheme, DEFAULT_AVATER);
417 public void loadPhoto(ImageView view, Uri photoUri, boolean hires, boolean darkTheme, argument
419 if (photoUri == null) {
424 if (DEBUG) Log.d(TAG, "loadPhoto request: " + photoUri);
425 loadPhotoByIdOrUri(view, Request.createFromUri(photoUri, hires, darkTheme,
H A DContactLoader.java187 String photoUri, String displayName, String altDisplayName, String phoneticName,
204 mPhotoUri = photoUri;
764 String photoUri = contactData.getPhotoUri();
765 if (photoUri != null) {
768 .openAssetFileDescriptor(Uri.parse(photoUri), "r");
854 final String photoUri = cursor.getString(ContactQuery.PHOTO_URI);
872 contactId, nameRawContactId, displayNameSource, photoId, photoUri, displayName,
185 Result(Uri requestedUri, Uri uri, Uri lookupUri, long directoryId, String lookupKey, long id, long nameRawContactId, int displayNameSource, long photoId, String photoUri, String displayName, String altDisplayName, String phoneticName, boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone, boolean isUserProfile) argument
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DContactInfo.java38 public Uri photoUri; field in class:ContactInfo
68 if (!UriUtils.areEqual(photoUri, other.photoUri)) return false;
/packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
H A DMockContactPhotoManager.java36 public void loadPhoto(ImageView view, Uri photoUri, boolean hires, boolean darkTheme, argument
/packages/apps/Contacts/src/com/android/contacts/util/
H A DStreamItemPhotoEntry.java37 public StreamItemPhotoEntry(long id, int sortIndex, long photoFileId, String photoUri, argument
42 mPhotoUri = photoUri;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DGlobalSearchSupport.java109 String photoUri; field in class:GlobalSearchSupport.SearchSuggestion
121 if (photoUri != null) {
122 icon1 = photoUri.toString();
340 suggestion.photoUri = c.getString(2);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactTileAdapter.java236 String photoUri = cursor.getString(mPhotoUriIndex);
243 contact.photoUri = (photoUri != null ? Uri.parse(photoUri) : null);
658 public Uri photoUri; field in class:ContactTileAdapter.ContactEntry
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java1006 public Intent getCropImageIntent(Uri photoUri) { argument
1008 intent.setDataAndType(photoUri, "image/*");
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupEditorFragment.java797 String photoUri = data.getString(GroupEditorQuery.CONTACT_PHOTO_URI);
799 displayName, photoUri));
842 String photoUri = cursor.getString(CONTACT_PHOTO_URI_COLUMN_INDEX);
844 Member member = new Member(mRawContactId, lookupKey, contactId, displayName, photoUri);
866 String photoUri) {
871 mPhotoUri = (photoUri != null) ? Uri.parse(photoUri) : null;
865 Member(long rawContactId, String lookupKey, long contactId, String displayName, String photoUri) argument

Completed in 189 milliseconds