gpt4 book ai didi

android - 无法打开相机连接到相机时发生错误 : 0

转载 作者:太空狗 更新时间:2023-10-29 13:13:06 24 4
gpt4 key购买 nike

我开始开发一个应用程序,我需要使用手机的摄像头,当我使用 Camera.open() 方法时,无论是否使用 cameraId,它都会返回错误“连接到相机时发生错误: 0”。我的 AndroidManifest.xml 是:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.telecombretagne.holowater">

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".camera"
android:label="@string/title_activity_camera"
android:theme="@style/AppTheme.NoActionBar"></activity>
</application>

</manifest>

我手机的Android版本是6.0.1,是BQ Aquaris M5。

提前致谢。

最佳答案

运行 Marshmallow 的设备需要在运行时设置权限,这是我对另一个类似问题的回答 here :)

From https://developer.android.com/training/permissions/requesting.html
Note: Beginning with Android 6.0 (API level 23), users can revoke permissions from any app at any time, even if the app targets a lower API level. You should test your app to verify that it behaves properly when it's missing a needed permission, regardless of what API level your app targets.

除了 list 中设置的权限外,您还需要在运行时请求/检查权限。您可以使用其中的示例代码,或者...


快速解决方案,

go to Settings-> Apps->(Your app name)->Permissions and enable the camera permission. Done, although not recommended for final product

然后再次尝试您的应用。现在应该可以工作了:D

关于android - 无法打开相机连接到相机时发生错误 : 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37889800/

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