takepicture hangs on Android 2.3.3

后端 未结 5 1682
感动是毒
感动是毒 2020-12-28 21:33

I have some codes of taking picture which works in Android 2.1 and 2.2. But these codes broke at Android 2.3. After spending time to fix this issue which went in vain, I wou

5条回答
  •  伪装坚强ぢ
    2020-12-28 22:26

    I'm not sure what the setOptimalSize method used in your code, but make sure you have set camera parameter

    mCamera.setPictureSize(captureSize.width, captureSize.height);
    mCamera.setPictureFormat(ImageFormat.JPEG);
    

提交回复
热议问题