summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2017-03-06 15:30:11 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2017-03-06 15:30:11 -0800
commita3c54129d6e8ac789b5e6b5e6fbaf3c051c35305 (patch)
tree20b2eb1e62dc0bbc1e25090773157b2d0b27a535 /src
parentdf56e4e67c53cce392a6b387cbe9cffbe8a7408b (diff)
parentb4cb89fa614337e13db510edb4eb230c76165d35 (diff)
downloadandroid_packages_apps_Snap-a3c54129d6e8ac789b5e6b5e6fbaf3c051c35305.tar.gz
android_packages_apps_Snap-a3c54129d6e8ac789b5e6b5e6fbaf3c051c35305.tar.bz2
android_packages_apps_Snap-a3c54129d6e8ac789b5e6b5e6fbaf3c051c35305.zip
Merge "SnapdragonCamera: fix thumbnail displayed in capture mode" into camera.lnx.1.0-dev.1.0
Diffstat (limited to 'src')
-rwxr-xr-xsrc/com/android/camera/CameraActivity.java4
-rwxr-xr-x[-rw-r--r--]src/com/android/camera/PhotoUI.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/camera/CameraActivity.java b/src/com/android/camera/CameraActivity.java
index 046265131..ea4bc03ba 100755
--- a/src/com/android/camera/CameraActivity.java
+++ b/src/com/android/camera/CameraActivity.java
@@ -765,7 +765,7 @@ public class CameraActivity extends Activity
if (mThumbnail == null) return;
if (mThumbnailDrawable != null) {
mThumbnail.setImageDrawable(mThumbnailDrawable);
- if (!isSecureCamera()) {
+ if (!isSecureCamera() && !isCaptureIntent()) {
mThumbnail.setVisibility(View.VISIBLE);
} else {
//under SecureCamera and UbiFocus mode, when back from RefocusActivity,if not save
@@ -1432,7 +1432,7 @@ public class CameraActivity extends Activity
}
}
- private boolean isCaptureIntent() {
+ public boolean isCaptureIntent() {
if (MediaStore.ACTION_VIDEO_CAPTURE.equals(getIntent().getAction())
|| MediaStore.ACTION_IMAGE_CAPTURE.equals(getIntent().getAction())
|| MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(getIntent().getAction())) {
diff --git a/src/com/android/camera/PhotoUI.java b/src/com/android/camera/PhotoUI.java
index 733868aad..bd892eda2 100644..100755
--- a/src/com/android/camera/PhotoUI.java
+++ b/src/com/android/camera/PhotoUI.java
@@ -559,7 +559,7 @@ public class PhotoUI implements PieListener,
}
public void initializeControlByIntent() {
- if (!mActivity.isSecureCamera()) {
+ if (!mActivity.isSecureCamera() && !mActivity.isCaptureIntent()) {
mThumbnail = (ImageView) mRootView.findViewById(R.id.preview_thumb);
mThumbnail.setOnClickListener(new OnClickListener() {
@Override