From 704bff736bda2bc5f6c5aa2956879f55101191f5 Mon Sep 17 00:00:00 2001 From: Paramananda Date: Mon, 13 Apr 2015 15:51:51 +0530 Subject: Gallery2 : Delete and Details options are not visible on Camera preview Added SUPPORT_DELETE and SUPPRT_INFO option on option item of image preview screen. CRs-Fixed: 819964 Change-Id: If8bbc702073d7193afb445feaa08d766886d3f22 --- src/com/android/gallery3d/data/LocalImage.java | 4 ++-- src/com/android/gallery3d/data/UriImage.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/com/android/gallery3d/data/LocalImage.java b/src/com/android/gallery3d/data/LocalImage.java index 67e8071d3..1b0384548 100644 --- a/src/com/android/gallery3d/data/LocalImage.java +++ b/src/com/android/gallery3d/data/LocalImage.java @@ -266,8 +266,8 @@ public class LocalImage extends LocalMediaItem { operation |= SUPPORT_SHARE; } } else { - operation = SUPPORT_SHARE | SUPPORT_CROP | SUPPORT_PRINT | SUPPORT_SETAS; - + operation = SUPPORT_DELETE | SUPPORT_SHARE | SUPPORT_CROP + | SUPPORT_SETAS | SUPPORT_PRINT | SUPPORT_INFO; if (BitmapUtils.isSupportedByRegionDecoder(mimeType)) { operation |= SUPPORT_FULL_IMAGE | SUPPORT_EDIT; } diff --git a/src/com/android/gallery3d/data/UriImage.java b/src/com/android/gallery3d/data/UriImage.java index 0cc1140c6..13176e4aa 100644 --- a/src/com/android/gallery3d/data/UriImage.java +++ b/src/com/android/gallery3d/data/UriImage.java @@ -233,8 +233,8 @@ public class UriImage extends MediaItem { supported |= SUPPORT_SHARE; } } else { - if (isSharable()) - supported |= SUPPORT_SHARE | SUPPORT_PRINT | SUPPORT_SETAS; + supported = SUPPORT_PRINT | SUPPORT_SETAS; + if (isSharable()) supported |= SUPPORT_SHARE; if (BitmapUtils.isSupportedByRegionDecoder(mContentType)) { supported |= SUPPORT_EDIT | SUPPORT_FULL_IMAGE; } -- cgit v1.2.3