Ask Your Question

raissel's profile - activity

2015-06-15 08:10:04 -0600 answered a question Tutorial3-Camera Control: picture freezed after takePicture()

Just add

    mCamera.startPreview();
    mCamera.setPreviewCallback(this);

after your call to

   mCamera.takePicture(null, null, this);

I hope this helps.