Searched defs:photoBitmap (Results 1 - 1 of 1) sorted by last modified time

/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java544 * @param photoBitmap the bitmap to bind.
546 public void bindPhoto(Bitmap photoBitmap) { argument
551 if (photoBitmap == drawableBitmap) {
556 changed = photoBitmap != null &&
557 (mDrawable.getIntrinsicWidth() != photoBitmap.getWidth() ||
558 mDrawable.getIntrinsicHeight() != photoBitmap.getHeight());
565 if (mDrawable == null && photoBitmap != null) {
566 mDrawable = new BitmapDrawable(getResources(), photoBitmap);

Completed in 227 milliseconds