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

  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 98 private PhotoView mPhotoView;
192 mPhotoView = (PhotoView) view.findViewById(R.id.photo_view);
193 mPhotoView.setMaxInitialScale(mIntent.getFloatExtra(Intents.EXTRA_MAX_INITIAL_SCALE, 1));
194 mPhotoView.setOnClickListener(this);
195 mPhotoView.setFullScreen(mFullScreen, false);
196 mPhotoView.enableImageTransforms(true);
236 if (mPhotoView != null) {
237 mPhotoView.clear();
238 mPhotoView = null;
321 if (mPhotoView != null)
    [all...]
  /frameworks/ex/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 98 private PhotoView mPhotoView;
186 mPhotoView = (PhotoView) view.findViewById(R.id.photo_view);
187 mPhotoView.setOnClickListener(this);
188 mPhotoView.setFullScreen(mFullScreen, false);
189 mPhotoView.enableImageTransforms(true);
229 if (mPhotoView != null) {
230 mPhotoView.clear();
231 mPhotoView = null;
316 if (mPhotoView != null) {
317 mPhotoView.bindPhoto(bitmap)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java 120 private ImageView mPhotoView;
182 mPhotoView = (ImageView) findViewById(R.id.photo);
315 mPhotoView.setLayoutParams(layoutParams);
316 mPhotoView.requestLayout();
322 ContactPhotoManager.getInstance(this).loadPhoto(mPhotoView, mPhotoUri, photoWidth,
326 mPhotoView.setImageResource(ContactPhotoManager.getDefaultAvatarResId(this, photoWidth,
330 mPhotoView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
344 ObjectAnimator anim = ObjectAnimator.ofPropertyValuesHolder(mPhotoView,
391 mPhotoView.requestLayout();
392 mOriginalPos.left = mPhotoView.getLeft()
    [all...]
ConfirmAddDetailActivity.java 112 private ImageView mPhotoView;
269 mPhotoView = (ImageView) findViewById(R.id.photo);
471 mPhotoView.setImageBitmap(photoBitmap);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoPage.java 126 private PhotoView mPhotoView;
269 mPhotoView.layout(0, 0, right - left, bottom - top);
283 mPhotoView = new PhotoView(mActivity);
284 mPhotoView.setListener(this);
285 mRootPane.addComponent(mPhotoView);
336 if (!mPhotoView.getFilmMode()) {
340 mPhotoView.switchToImage(1);
342 if (mAppBridge != null) mPhotoView.setFilmMode(false);
353 mPhotoView.switchToImage(1);
362 if (!mPhotoView.getFilmMode() && mCurrentPhoto != nul
    [all...]
SinglePhotoDataAdapter.java 51 private PhotoView mPhotoView;
61 mPhotoView = Utils.checkNotNull(view);
128 mPhotoView.notifyImageChange(0);
144 mPhotoView.notifyImageChange(0);
PhotoDataAdapter.java 144 private final PhotoView mPhotoView;
177 mPhotoView = Utils.checkNotNull(view);
288 mPhotoView.notifyDataChange(fromIndex, -mCurrentIndex,
323 mPhotoView.notifyImageChange(i);
344 mPhotoView.notifyImageChange(0);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailTabCarousel.java 61 private ImageView mPhotoView;
137 mPhotoView = (ImageView) mAboutTab.findViewById(R.id.photo);
309 mPhotoView.setScaleY(revScale);
310 mPhotoView.setPivotY(photoHeight * 0.5f);
311 final ViewPropertyAnimator photoAnimator = mPhotoView.animate();
474 mContext, contactData, mPhotoView, expandOnClick);
PhotoSelectionHandler.java 64 private final View mPhotoView;
74 mPhotoView = photoView;
95 mContext, mPhotoView, listener, mPhotoMode);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 69 private QuickContactBadge mPhotoView;
178 mPhotoView = (QuickContactBadge) findViewById(R.id.photo);
204 mPhotoView.setOnClickListener(this);
216 mListener.onPhotoClick(mPhotoView);
256 mPhotoView.assignContactUri((Uri) cookie);
291 mPhotoView.assignContactFromPhone(phoneNumber, true);
307 mPhotoView.assignContactFromEmail(emailAddress, true);
362 mPhotoView.assignContactUri(uri);
371 mPhotoView.setImageBitmap(bitmap);
382 mPhotoView.assignContactUri(lookupUri)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListItemView.java 123 private ImageView mPhotoView;
139 * Can be effective even when {@link #mPhotoView} is null, as we want to have horizontal padding
144 * Can be effective even when {@link #mPhotoView} is null, as we want to have vertical padding.
149 * Only effective when {@link #mPhotoView} is null.
155 * Only effective when {@link #mPhotoView} is null.
478 final View photoView = mQuickContact != null ? mQuickContact : mPhotoView;
615 if (!mQuickContactEnabled && mPhotoView == null) {
748 if (mPhotoView == null) {
749 mPhotoView = new ImageView(mContext);
750 mPhotoView.setLayoutParams(getDefaultPhotoLayoutParams())
    [all...]

Completed in 552 milliseconds