不幸的是,当使用带有 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 源文件,在 Util 类文件中有一些“测试”方法,但没有正式记录:
(实用程序)
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;
}
并且在光模块中,使用了以下方法:
(照片模块)
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);