I have a Tab Activity with 2 tabs (activities). Each tab has a 3d Open GL scene drawn on top of a SurfaceView with camera preview.

Yet, depending on device orientation, tabs are being switched.

The problem is that when the other activity starts, it calls camera.open(), which generates exception, saying that camera service is unavailable.

In fact, the problem is that camera is not stopped when activity is paused, in other words onSurfaceDestroyed() is not called for the SurfaceView. I tried to stop camera when onPause() for activities is called, but get the same error still.

Anyone had same issues with tabbed activities? Any idea how to make surfaceview get destroyed?

link|improve this question
Did you call both .stopPreview() and .release() on your camera object? – Vytautas Shaltenis Nov 24 '11 at 13:35
Yes, see code below. – Kirill Volkov Nov 25 '11 at 6:56
feedback

1 Answer

up vote 0 down vote accepted
private SurfaceHolder.Callback mSurfaceHolderListener = new SurfaceHolder.Callback() {

    public void surfaceDestroyed(SurfaceHolder holder) {
        Log.e("TABACT", "surfaceDestroyed()");
        camera.stopPreview();
        camera.setPreviewCallback(null); 
        camera.release();
        camera = null;
    }
link|improve this answer
Found the solution. First of all for each tabbed activity create a framelayout which contains all the child views. Set it as content view. Yet stop camera by simply calling in onPause() setVisibility to View.GONE and View.Visible in onResume(). – Kirill Volkov Nov 30 '11 at 10:19
feedback

Your Answer

 
or
required, but never shown

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