Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

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

share|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

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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