gpt4 book ai didi

java - 有意启动前置摄像头

转载 作者:行者123 更新时间:2023-11-29 08:26:43 24 4
gpt4 key购买 nike

我正在尝试使用 Intent 直接打开前置摄像头。下面是我的代码——

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP_MR1) {
intent.putExtra("android.intent.extras.CAMERA_FACING", android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT);

intent.putExtra("android.intent.extras.LENS_FACING_FRONT", 1);
intent.putExtra("android.intent.extra.USE_FRONT_CAMERA", true);
}

我的 list 文件:--

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="some.package">
<uses-permission android:name="android.permission.INTERNET" />
<!--
The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
Google Maps Android API v2, but you must specify either coarse or fine
location permissions for the 'MyLocation' functionality.
-->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.front" android:required="false" />

此代码不适用于 S6(7.0)。但是它适用于 S5、S4、Nexus 6P(8.0)。

这是三星的某种错误还是我的代码有问题。

我发现了一些类似的问题,例如 thisthis .但对我来说没有帮助。

最佳答案

I am trying to open the front camera directly with Intent

Android SDK 中没有相关内容。

Below is my code

Android 有成百上千种不同的相机应用程序可用。有些是预装的;有些是用户安装的。没有人必须遵守那些未记录的 Intent 额外内容。

This code is not working on S6(7.0). However it is working on S5,S4,Nexus 6P(8.0).

大约有 20,000 多种 Android 设备型号。只有一些人可能预装了相机应用程序,以纪念那些未记录的 Intent 额外功能。

So is this some kind of bug of Samsung or there is something wrong in my code.

三星针对该特定设备的相机应用根本不支持那些未记录的附加功能。

关于java - 有意启动前置摄像头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52148994/

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