From 854974258687f49cab1216fc32f75a3cdbc4785f Mon Sep 17 00:00:00 2001 From: Camera Software Integration Date: Tue, 10 Nov 2015 13:19:41 -0800 Subject: SnapdragonCamera: Do not update panorama thumbnail when cancelled Do not update thumbnail when panorama is cancelled. Change-Id: I3db9f9614b35ee4e475fbb7b1dc801b77e6ed6bd CRs-Fixed: 934157 --- src/com/android/camera/WideAnglePanoramaModule.java | 7 ++++--- src/com/android/camera/WideAnglePanoramaUI.java | 12 ++++++++++-- 2 files changed, 14 insertions(+), 5 deletions(-) (limited to 'src/com/android') diff --git a/src/com/android/camera/WideAnglePanoramaModule.java b/src/com/android/camera/WideAnglePanoramaModule.java index 71972f025..9097fdc1c 100644 --- a/src/com/android/camera/WideAnglePanoramaModule.java +++ b/src/com/android/camera/WideAnglePanoramaModule.java @@ -300,7 +300,7 @@ public class WideAnglePanoramaModule switch (msg.what) { case MSG_LOW_RES_FINAL_MOSAIC_READY: onBackgroundThreadFinished(); - showFinalMosaic((Bitmap) msg.obj); + saveFinalMosaic((Bitmap) msg.obj); saveHighResMosaic(); break; case MSG_GENERATE_FINAL_MOSAIC_ERROR: @@ -742,6 +742,7 @@ public class WideAnglePanoramaModule mActivity.runOnUiThread(new Runnable() { @Override public void run() { + mUI.showFinalMosaic(); mActivity.notifyNewMedia(uri); } }); @@ -800,8 +801,8 @@ public class WideAnglePanoramaModule } } - private void showFinalMosaic(Bitmap bitmap) { - mUI.showFinalMosaic(bitmap, getCaptureOrientation()); + private void saveFinalMosaic(Bitmap bitmap) { + mUI.saveFinalMosaic(bitmap, getCaptureOrientation()); } private Uri savePanorama(byte[] jpegData, int width, int height, int orientation) { diff --git a/src/com/android/camera/WideAnglePanoramaUI.java b/src/com/android/camera/WideAnglePanoramaUI.java index 862e4d2ba..f79115449 100644 --- a/src/com/android/camera/WideAnglePanoramaUI.java +++ b/src/com/android/camera/WideAnglePanoramaUI.java @@ -88,6 +88,7 @@ public class WideAnglePanoramaUI implements private ShutterButton mShutterButton; private CameraControls mCameraControls; private ImageView mThumbnail; + private Bitmap mThumbnailBitmap; private Matrix mProgressDirectionMatrix = new Matrix(); private float[] mProgressAngle = new float[2]; @@ -299,7 +300,7 @@ public class WideAnglePanoramaUI implements mCaptureProgressBar.setVisibility(View.INVISIBLE); } - public void showFinalMosaic(Bitmap bitmap, int orientation) { + public void saveFinalMosaic(Bitmap bitmap, int orientation) { if (bitmap != null && orientation != 0) { Matrix rotateMatrix = new Matrix(); rotateMatrix.setRotate(orientation); @@ -316,7 +317,14 @@ public class WideAnglePanoramaUI implements // a framework bug. Call requestLayout() as a workaround. mSavingProgressBar.requestLayout(); - mActivity.updateThumbnail(bitmap); + mThumbnailBitmap = bitmap; + } + + public void showFinalMosaic() { + if (mThumbnailBitmap == null) return; + mActivity.updateThumbnail(mThumbnailBitmap); + mThumbnailBitmap.recycle(); + mThumbnailBitmap = null; } public void onConfigurationChanged( -- cgit v1.2.3