summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/util
diff options
context:
space:
mode:
authorAlan Newberger <alann@google.com>2013-10-30 11:42:14 -0700
committerAlan Newberger <alann@google.com>2013-10-30 11:44:13 -0700
commitebbcc3944adcc01846128d1bdacc7c8b1c8cdb35 (patch)
tree2519ca73b85502d51a286b7895481ac9a8871758 /src/com/android/gallery3d/util
parentec036c64173ac581f460b25330248fda2a6cb57a (diff)
downloadandroid_packages_apps_Gallery2-ebbcc3944adcc01846128d1bdacc7c8b1c8cdb35.tar.gz
android_packages_apps_Gallery2-ebbcc3944adcc01846128d1bdacc7c8b1c8cdb35.tar.bz2
android_packages_apps_Gallery2-ebbcc3944adcc01846128d1bdacc7c8b1c8cdb35.zip
Avoid crash if user disables Camera while Gallery is open
We cache the camera availability check so in the corner case that a user disables their camera in package manager, avoid crashing. Not necessary to do more sophisticated handling since this is a narrow case initiated by user. Bug: 11435559 Change-Id: I54d5015cdd9b64aec5c9da9a393824d3b41201a1
Diffstat (limited to 'src/com/android/gallery3d/util')
-rw-r--r--src/com/android/gallery3d/util/GalleryUtils.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/util/GalleryUtils.java b/src/com/android/gallery3d/util/GalleryUtils.java
index d1f822923..8fb926c0b 100644
--- a/src/com/android/gallery3d/util/GalleryUtils.java
+++ b/src/com/android/gallery3d/util/GalleryUtils.java
@@ -247,7 +247,13 @@ public class GalleryUtils {
Intent intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA)
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_NEW_TASK);
- context.startActivity(intent);
+ try {
+ context.startActivity(intent);
+ } catch (ActivityNotFoundException e) {
+ // This will only occur if Camera was disabled while Gallery is open
+ // since we cache our availability check. Just abort the attempt.
+ Log.e(TAG, "Camera activity previously detected but cannot be found", e);
+ }
}
public static void startGalleryActivity(Context context) {