android.hardware.Camera tells me, of lock() and unlock(), that I "probably do not need this method" if I "am not recording video." Well, I am recording video.

unlock() is supposed to be called "before calling android.media.MediaRecorder.setCamera(Camera)." That's simple enough; I can just put the unlock() call immediately before the setCamera() call. But what is the right time to call lock()? Immediately after setCamera()? After MediaRecorder.stop()? Or at some other time? How do I know when it's time to lock the Camera?

link|improve this question

76% accept rate
feedback

2 Answers

You can use reconnection instead of lock after MediaRecorder.stop().

link|improve this answer
So are you saying that the time to call lock() (or reconnect()) is immediately following MediaRecorder.stop()? – Carl Manaster Aug 16 '11 at 15:20
feedback

You don't need call lock(), when you open a camera, Camera objects are locked by default unless unlock() is called. So basically lock() method is called when you want to prevent that no one can use camera service until you release the camera.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.