我正在使用phonegap相机捕捉这样的图像
navigator.camera.getPicture(onPhotoDataSuccess, onFail, {
quality : 50,
sourceType : Camera.PictureSourceType.CAMERA,
destinationType : destinationType.FILE_URI,
encodingType : Camera.EncodingType.PNG,
});
请注意应用程序崩溃的唯一时间
我已尝试过清单中的更改,例如
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
这是我的logcat
提前感谢!!
答案 0 :(得分:0)
将质量参数从50降低到30会使相机API无法使应用程序崩溃
在samsung galaxy s3上编辑1
在三星Galaxy 3上,开发人员选项默认情况下不启用活动。
当您启动任何其他活动时,这将垃圾收集您的主要活动,在这种情况下是相机。
关闭选项可以解决问题。