Trying To Switch Camera Back To Front But Getting Exception
Trying to switch camera back to front but getting exception. cant find the problem Please Check and help.. error:- 01-27 11:49:00.376: E/AndroidRuntime(30767): java.lang.RuntimeE
Solution 1:
Stop the camera previous instance before switching to other :
if (camera != null) {
camera.stopPreview();
camera.setPreviewCallback(null);
camera.release();
camera = null;
surfaceholder.removeCallback(CameraActivity.this);
surfaceholder = null;
}
And finish current camera activity, call start intent of same camera activity.
Post a Comment for "Trying To Switch Camera Back To Front But Getting Exception"