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.

I'm doing one project with camera and after taking one photo camera freezes and u have to finish the activity and recall it again to take another photo, how can I take photo freeze for just 1-2 sec and then surface view to have the camera again. the same for video I am using media recorder, taking video press stop video saves and screen is still alive but I can not take video again I have to restart the activity?

Anybody have a solution?

share|improve this question
can you show some code plz? – subspider May 26 '11 at 13:43
@subspider are you using galaxy s to check the camera functionality? – dsc May 26 '11 at 14:05
same problem here. @dsc yeah I'm using a galaxy s – stoefln Oct 10 '11 at 14:57

3 Answers

up vote -1 down vote accepted

Do any image processing in a background AsyncTask. This will allow your UI Activity to continue on and take another picture.

share|improve this answer
2  
This is not why the camera is freezing -- stoefln's answer is correct; the preview needs to be restarted. – elijah Jan 31 '12 at 0:32

I found a solution for this: After taking a picture, preview display will have stopped. To take more photos, call camera.startPreview() again first.

share|improve this answer
this is the right answer. Thank you!! – elijah Jan 31 '12 at 0:31

Instead of using the activities defined by the existing camera app on your phone, you can write your own Activity that uses the Camera API directly to accomplish the functionality you describe. The Camera class is documented here: http://developer.android.com/reference/android/hardware/Camera.html

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.