summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorMichael W <baddaemon87@gmail.com>2016-05-23 13:17:28 +0200
committerArne Coucheron <arco68@gmail.com>2017-12-16 06:51:38 +0100
commit3cc100ead8f02b70260fb725c2ab2b9fa7980963 (patch)
tree7d1ae65bcd674ab5941eee1938e561a3a35a4551 /src_pd
parentc3743384239a7cd10d9405adf0ce01f150df3bca (diff)
downloadandroid_packages_apps_Gallery2-3cc100ead8f02b70260fb725c2ab2b9fa7980963.tar.gz
android_packages_apps_Gallery2-3cc100ead8f02b70260fb725c2ab2b9fa7980963.tar.bz2
android_packages_apps_Gallery2-3cc100ead8f02b70260fb725c2ab2b9fa7980963.zip
Gallery2: Try to open existing camera
Do not just open Camera2, just open any existing cam Also get rid of context parameter as it's unused (Reference: BugReports 13-20160506-12 Line #5) Change-Id: I120a1561aeceda2fc23721aa2ff4d68710fab76c
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/gallery3d/util/IntentHelper.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/src_pd/com/android/gallery3d/util/IntentHelper.java b/src_pd/com/android/gallery3d/util/IntentHelper.java
index 8aebfc1fd..d0fb59ae8 100644
--- a/src_pd/com/android/gallery3d/util/IntentHelper.java
+++ b/src_pd/com/android/gallery3d/util/IntentHelper.java
@@ -15,17 +15,16 @@
*/
package com.android.gallery3d.util;
-import android.content.Context;
import android.content.Intent;
+import android.provider.MediaStore;
public class IntentHelper {
- public static Intent getCameraIntent(Context context) {
- return new Intent(Intent.ACTION_MAIN)
- .setClassName("com.android.camera2", "com.android.camera.CameraLauncher");
+ public static Intent getCameraIntent() {
+ return new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
}
- public static Intent getGalleryIntent(Context context) {
+ public static Intent getGalleryIntent() {
return new Intent(Intent.ACTION_MAIN)
.setClassName("com.android.gallery3d", "com.android.gallery3d.app.GalleryActivity");
}