gpt4 book ai didi

android - Intent 没有设置相机参数

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:04:48 27 4
gpt4 key购买 nike

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

  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);

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

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

<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

它允许您映射相机应用程序存储图像的位置。

Camera Facing intent extra 有时可以工作:

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;
}

而在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);

关于android - Intent 没有设置相机参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19667094/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com