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.
11-11 20:13:39.831: W/Camera(767): ICamera died
11-11 20:13:39.831: W/Camera(767): Camera server died!
11-11 20:13:39.842: E/Camera(767): Error 100

Hello I have been working on this problem for a while. I have all the permission set correctly in Manifest file, and am doing the correct Camera.open and setting up a CameraPreview (Surface View) like in the Android.com example. However, I continually get the Camera server error when the startPreview() method is invoked in the following method of CameraPreview class.

Any ideas? I have scoured the web for solutions, this method is not called until after the onResume and the Camera is opened successfully.

//method of CameraPreview (extends SurfaceView implements SurfaceHolder.Callback)
//that is associated with a view added to a FrameLayout in my App

public void surfaceCreated(SurfaceHolder holder) {
    // The Surface has been created, now tell the camera where to draw the preview.
        try {
            mCamera.setPreviewDisplay(holder);
            mCamera.startPreview();//HERE IS WHERE IT IS CAUSING ERROR!!!!!
        } catch (IOException e) {
          //  Log.d(TAG, "Error setting camera preview: " + e.getMessage());
            System.err.println("Error setting camera preview: " + e.getMessage());
        }
    }
share|improve this question
Run your code in debug mode and post previous log errors (if exist) pls – kinghomer Nov 20 '12 at 11:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.