意图不设置相机参数

我从我的应用程序作为外部意图打开相机应用程序。 我正在使用以下代码来调用相机,以下是我的条件:

  1. 它应该打开前置摄像头。
  2. 最高的画质。
  3. 闪光灯必须打开

以下是我的代码:

Intent action = new Intent("android.media.action.IMAGE_CAPTURE"); action.putExtra("android.intent.extras.CAMERA_FACING", 1); action.putExtra("android.intent.extras.FLASH_MODE_ON", 1); action.putExtra("android.intent.extras.QUALITY_HIGH", 1); 

现在,它确实打开了前置摄像头,但没有打开闪光灯,也没有将画质设置为高。

我的清单文件的权限部分如下所示:

 <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.FLASHLIGHT"/> <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" /> <uses-feature android:name="android.hardware.camera.flash" /> 

有什么我失踪?

不幸的是,当用Intent使用相机时,可以设置的唯一额外参数是

 MediaStore.EXTRA_OUTPUT 

例如

 fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE); // create a file to save the image intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file name 

这使您可以映射相机应用程序将存储图像的位置。

相机面对意图额外有时可以工作:

 action.putExtra("android.intent.extras.CAMERA_FACING", 1); 

在Android源文件中,有一些“testing”方法在Util类文件中,但没有正式logging:

(使用率)

 private static final String EXTRAS_CAMERA_FACING = "android.intent.extras.CAMERA_FACING"; // This is for test only. Allow the camera to launch the specific camera. public static int getCameraFacingIntentExtras(Activity currentActivity) { int cameraId = -1; int intentCameraId = currentActivity.getIntent().getIntExtra(Util.EXTRAS_CAMERA_FACING, -1); if (isFrontCameraIntent(intentCameraId)) { // Check if the front camera exist int frontCameraId = CameraHolder.instance().getFrontCameraId(); if (frontCameraId != -1) { cameraId = frontCameraId; } } else if (isBackCameraIntent(intentCameraId)) { // Check if the back camera exist int backCameraId = CameraHolder.instance().getBackCameraId(); if (backCameraId != -1) { cameraId = backCameraId; } } return cameraId; } 

在光子模块中,使用以下方法:

(PhotoModule)

 private int getPreferredCameraId(ComboPreferences preferences) { int intentCameraId = Util.getCameraFacingIntentExtras(mActivity); if (intentCameraId != -1) { // Testing purpose. Launch a specific camera through the intent // extras. return intentCameraId; } else { return CameraSettings.readPreferredCameraId(preferences); } } 

当相机应用程序初始化照片模式时,它会调用此方法来检查使用哪个相机:

 mCameraId = getPreferredCameraId(mPreferences); 
 intent.putExtra("android.intent.extras.CAMERA_FACING", android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT); 

这是一个意图,开始捕捉与前置摄像头,而不是默认的后置摄像头。

这工作,因为它是用在这个stream行的cordova插件在这个链接145行: https : //github.com/EddyVerbruggen/VideoCapturePlus-PhoneGap-Plugin/blob/master/src/android/nl/xservices/plugins/videocaptureplus/ VideoCapturePlus.java

希望这可以帮助任何人面对同样的问题。

你也知道,如果你可以设置一个意图,禁用相机控制(filter,相机之间切换..等),以便他们不显示?