カメラとAndroidの場合はtutorialです。カメラの使い方
しかし、私は常にエラーを取得する:java.lang.RuntimeException: Fail to connect to camera service
ここでは私のマニフェストです:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp">
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".DisplayMessageActivity" />
<activity android:name=".CameraActivity"
android:label="@string/app_name"
android:screenOrientation="landscape">
</activity>
</application>
</manifest>
私は理由がクラスandroid.hardware.Camera
は廃止されていることだと思います。 これは可能ですか?
このエラーの原因は、クラスandroid.hardware.Camera
が推奨されていないため、クラスandroid.hardware.Camera2;
を使用する必要がありますか?
その例外メッセージには多くのヒットがあります。 https://stackoverflow.com/q/26305107/1531971 https://stackoverflow.com/q/10100351/1531971 https://stackoverflow.com/q/7829162/1531971 – jdv
[android java lang runtimeexceptionが重複している可能性がありますカメラサービスに接続](https://stackoverflow.com/questions/23904459/android-java-lang-runtimeexception-fail-to-connect-to-camera-service) –