0
私はカメラをバーコードスキャナのアプリとオンに使用しています。一部の端末(LG G Flex、Asus Nexus 7):Androidランタイム例外 - カメラサービスに接続できませんでした。停止し、上の破壊、私は一時停止にカメラをリリースしていますAndroidランタイム例外 - カメラサービスを接続できません。
`uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"
uses-permission android:name="android.permission.CAMERA"
....`
:ここ は以下menifestファイルからの抜粋です。
/**
* Restarts the camera.
*/
@Override
protected void onResume() {
super.onResume();
try {
startCameraSource();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Stops the camera.
*/
@Override
protected void onPause() {
super.onPause();
if (mPreview != null) {
mPreview.stop();
}
}
/**
* Releases the resources associated with the camera source, the associated detectors, and the
* rest of the processing pipeline.
*/
@Override
protected void onDestroy() {
super.onDestroy();
if (mPreview != null) {
mPreview.release();
}
}
実行時例外を上回っていますが、上記の2つのデバイスがないため、再現できません。 その問題の解決策はありますか?