tags:

views:

21

answers:

0

I've implemented a basic picture taker for the Camera on my Android device. For some reason I randomly get these error messages:

W/Camera  ( 2097): Camera server died!
W/Camera  ( 2097): ICamera died
E/Camera  ( 2097): Error 100  

Fortunately, Android has an OnError handler you can set on the Camera, which gets called when the server dies. However, there's no response that can stop my app from restarting the phone. Is it my Droid specifically?

The only thing I can think of that my code is doing is calling "finish" inside of the onPictureTaken method.

Does anyone have any ideas why this could be occurring?