From d00f521a3138a8f244c91748b0277290edbf61f6 Mon Sep 17 00:00:00 2001 From: Bobby Georgescu Date: Mon, 28 Jan 2013 16:16:44 -0800 Subject: [PATCH] Fix ANRs due to waiting for IO on UI thread Bug: 7998915 Change-Id: I938145a7072170f713099a04578f98951b35cbab --- src/com/android/gallery3d/app/AbstractGalleryActivity.java | 4 +--- src/com/android/gallery3d/app/PhotoPage.java | 4 +--- src/com/android/gallery3d/ui/MenuExecutor.java | 14 ++++++++++++-- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/com/android/gallery3d/app/AbstractGalleryActivity.java b/src/com/android/gallery3d/app/AbstractGalleryActivity.java index acfc033b7..c9cce811a 100644 --- a/src/com/android/gallery3d/app/AbstractGalleryActivity.java +++ b/src/com/android/gallery3d/app/AbstractGalleryActivity.java @@ -343,9 +343,7 @@ public class AbstractGalleryActivity extends Activity implements GalleryContext if (mBatchServiceIsBound && mBatchService != null) { return mBatchService.getThreadPool(); } else { - // Fall back on the old behavior if for some reason the - // service is not available. - return getThreadPool(); + throw new RuntimeException("Batch service unavailable"); } } } diff --git a/src/com/android/gallery3d/app/PhotoPage.java b/src/com/android/gallery3d/app/PhotoPage.java index c110a8ccc..b3a6040de 100644 --- a/src/com/android/gallery3d/app/PhotoPage.java +++ b/src/com/android/gallery3d/app/PhotoPage.java @@ -1217,9 +1217,7 @@ public abstract class PhotoPage extends ActivityState implements @Override public void onCommitDeleteImage() { if (mDeletePath == null) return; - mSelectionManager.deSelectAll(); - mSelectionManager.toggle(mDeletePath); - mMenuExecutor.onMenuClicked(R.id.action_delete, null, true, false); + mMenuExecutor.startSingleItemAction(R.id.action_delete, mDeletePath); mDeletePath = null; } diff --git a/src/com/android/gallery3d/ui/MenuExecutor.java b/src/com/android/gallery3d/ui/MenuExecutor.java index 28fd71e10..497632f5e 100644 --- a/src/com/android/gallery3d/ui/MenuExecutor.java +++ b/src/com/android/gallery3d/ui/MenuExecutor.java @@ -132,7 +132,6 @@ public class MenuExecutor { private void stopTaskAndDismissDialog() { if (mTask != null) { if (!mWaitOnStop) mTask.cancel(); - mTask.waitDone(); if (mDialog != null && mDialog.isShowing()) mDialog.dismiss(); mDialog = null; mTask = null; @@ -334,15 +333,26 @@ public class MenuExecutor { stopTaskAndDismissDialog(); Activity activity = mActivity; - mDialog = createProgressDialog(activity, title, ids.size()); if (showDialog) { + mDialog = createProgressDialog(activity, title, ids.size()); mDialog.show(); + } else { + mDialog = null; } MediaOperation operation = new MediaOperation(action, ids, listener); mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null); mWaitOnStop = waitOnStop; } + public void startSingleItemAction(int action, Path targetPath) { + ArrayList ids = new ArrayList(1); + ids.add(targetPath); + mDialog = null; + MediaOperation operation = new MediaOperation(action, ids, null); + mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null); + mWaitOnStop = false; + } + public static String getMimeType(int type) { switch (type) { case MediaObject.MEDIA_TYPE_IMAGE : -- 2.11.0