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

  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
FilterStack.java 48 private final PhotoView photoView;
56 public FilterStack(PhotoView photoView, StackListener stackListener, Bundle savedState) {
57 this.photoView = photoView;
101 photoView.setPhoto(photo, outputTopFilter);
108 photoView.setPhoto(runFilter(appliedStack.size() - 1), true);
136 photoView.post(new Runnable() {
149 photoView.post(new Runnable()
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
EffectToolFactory.java 24 import com.android.gallery3d.photoeditor.PhotoView;
46 View photoView = effectToolPanel.getRootView().findViewById(R.id.photo_view);
47 ViewGroup parent = (ViewGroup) photoView.getParent();
49 view.setPhotoBounds(((PhotoView) photoView).getPhotoBounds());
50 parent.addView(view, parent.indexOfChild(photoView) + 1);
FlipAction.java 23 import com.android.gallery3d.photoeditor.PhotoView;
52 PhotoView photoView = (PhotoView) flipView.getRootView().findViewById(
83 photoView.remove(queuedFlipChange);
89 photoView.flipPhoto(horizontalDegrees, verticalDegrees);
92 photoView.queue(queuedFlipChange);
RotateAction.java 23 import com.android.gallery3d.photoeditor.PhotoView;
51 PhotoView photoView = (PhotoView) rotateView.getRootView().findViewById(
79 photoView.remove(queuedRotationChange);
85 photoView.rotatePhoto(degrees);
88 photoView.queue(queuedRotationChange);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 84 cache.photoView.assignContactUri(Contacts.getLookupUri(contactId, lookupKey));
92 cache.photoView = (QuickContactBadge) view.findViewById(R.id.badge);
101 public QuickContactBadge photoView;
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 196 public static void setPhoto(Context context, Result contactData, ImageView photoView) {
198 photoView.setImageBitmap(null);
205 if (photoView.getDrawable() == null && fadeIn) {
209 photoView.startAnimation(animation);
211 photoView.setImageBitmap(bitmap);
ContactDetailFragment.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListItemView.java 522 final View photoView = mQuickContact != null ? mQuickContact : mPhotoView;
525 if (photoView != null) {
528 photoView.layout(
540 if (photoView != null) {
543 photoView.layout(
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 385 final ImageView photoView = (ImageView) mPhotoContainer.findViewById(R.id.photo);
429 photoView.setImageBitmap(result);
481 if (photoView != null) {
484 photoView.setImageBitmap(photoBitmap);
486 photoView.setImageResource(ContactPhotoManager.getDefaultAvatarResId(true, false));

Completed in 269 milliseconds