Searched defs:mPhoto (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DBaseRawContactEditorView.java48 private PhotoEditorView mPhoto; field in class:BaseRawContactEditorView
71 mPhoto = (PhotoEditorView)findViewById(R.id.edit_photo);
72 mPhoto.setEnabled(isEnabled());
83 mPhoto.setPhotoBitmap(bitmap);
88 mPhoto.setVisibility(hasPhotoEditor ? View.VISIBLE : View.GONE);
103 return mPhoto.hasSetPhoto();
107 return mPhoto;
/packages/apps/Email/src/com/android/email/activity/
H A DContactStatusLoader.java68 public final Bitmap mPhoto; field in class:ContactStatusLoader.Result
77 mPhoto = photo;
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactTileView.java40 private ImageView mPhoto; field in class:ContactTileView
61 mPhoto = (ImageView) findViewById(R.id.contact_tile_image);
126 if (mPhoto != null) {
127 mPhotoManager.loadPhoto(mPhoto, entry.photoUri, getApproximateImageSize(),
/packages/apps/Contacts/src/com/android/contacts/group/
H A DSuggestedMemberListAdapter.java327 private byte[] mPhoto; field in class:SuggestedMemberListAdapter.SuggestedMember
352 return mPhoto;
367 mPhoto = photo;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropActivity.java362 RectF mPhoto = null; field in class:CropActivity.BitmapIOTask
390 mPhoto = photoBounds;
423 if (mCrop != null && mPhoto != null && mOrig != null) {
424 RectF trueCrop = CropMath.getScaledCropBounds(mCrop, mPhoto, mOrig);
438 Bitmap ret = getCroppedImage(img, mCrop, mPhoto);
462 RectF trueCrop = CropMath.getScaledCropBounds(mCrop, mPhoto, mOrig);
/packages/apps/Phone/src/com/android/phone/
H A DCallCard.java122 private ImageView mPhoto; field in class:CallCard
132 * Uri being used to load contact photo for mPhoto. Will be null when nothing is being loaded,
168 showImage(mPhoto, R.drawable.picture_unknown);
231 mPhoto = (ImageView) findViewById(R.id.photo);
1318 // Update mPhoto
1329 mPhoto.setTag(null);
1330 mPhoto.setVisibility(View.INVISIBLE);
1332 showImage(mPhoto, info.photoResource);
1333 } else if (!showCachedImage(mPhoto, info)) {
1336 showImage(mPhoto,
[all...]

Completed in 486 milliseconds