Skip to content Skip to sidebar Skip to footer

Camera.parameters Device Specific Crash (samsung S3 Mini)

The following code is working on a Galaxy Nexus, Samsung S3 and HTC One X but it crashes on a Samsung S3 Mini @Override public void surfaceChanged(SurfaceHolder holder, int format,

Solution 1:

It's happen on

parameters.setFocusMode(Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE);

samsung doesn't support this you can try

parameters.setFocusMode(Camera.Parameters.FOCUS_MODE_AUTO);

Post a Comment for "Camera.parameters Device Specific Crash (samsung S3 Mini)"