Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having an issue with a Fragment I've created that displays the Camera preview and takes pictures/videos. On first run, it works fine, I get a valid display, everything works. When a picture is taken, I replace the CameraFragment with a different Fragment. When that Fragment finishes, I go back to the CameraFragment. However, on a few devices, the display is black. If I take a picture while the screen is black, it still comes out like normal.

Furthermore, this only happens on 2 devices that I've tested so far: The Samsung Galaxy Tab 7" and the Samsung Epic 4G. It works as expected on my personal phone (Galaxy Nexus) as well as a number of other phones (Aria, Evo, Nexus S).

Right now, to fix the problem, I have to press the power button to turn the screen off, then turn it back on, and the camera is magically displayed again. Here's what I'm doing in the CameraFragment:

private boolean initCamera( SurfaceHolder holder ) {

    Camera camera = null;
    try {
        camera = Camera.open();
    }
    catch (Exception e) {
        // Camera isn't available
        getCallback().onCameraUnavailable();
        return false;
    }

    int rotation;
    if ( Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD ) {
        rotation = computeCameraRotation( camera );
    }
    else {
        rotation = 90;
    }

    camera.setDisplayOrientation( rotation );

    Camera.Parameters params = camera.getParameters();
    params.setPictureFormat( ImageFormat.JPEG );
    params.setRotation( rotation );
    camera.setParameters( params );

    try {
        camera.setPreviewDisplay( holder );
    }
    catch (IOException e) {
        e.printStackTrace();
    }

    setCamera( camera );
    setCameraInitialized( true );

    return true;
}

private void destroyCamera() {

    Camera camera = getCamera();
    if ( camera != null ) {
        try {
            camera.stopPreview();
            camera.release();
        }
        catch (RuntimeException e) {
            // camera already released
        }
        setCamera( null );
    }
}

@Override
public void surfaceCreated( SurfaceHolder holder ) {

    if ( !isCameraInitialized() ) {
        initCamera( holder );
    }

    if ( getMode() == MODE_VIDEO ) {
        initRecording();
    }

    setSurfaceHolder( holder );
}

@Override
public void surfaceDestroyed( SurfaceHolder holder ) {

    MediaRecorder recorder = getRecorder();
    if ( recorder != null ) {
        if ( isRecording() ) {
            stopRecording( false );
        }
        recorder.release();
    }

    destroyCamera();

    setSurfaceHolder( null );
    setCameraInitialized( false );
}

@Override
public void surfaceChanged( SurfaceHolder holder, int format, int width, int height ) {

    Camera camera = getCamera();
    try {
        Camera.Parameters params = camera.getParameters();
        Camera.Size size = getCameraPictureSize( camera );
        params.setPictureSize( size.width, size.height );
        camera.setParameters( params );

        startPreview();

        if ( getMode() == MODE_VIDEO ) {
            initRecording();
        }
    }
    catch (RuntimeException e) {
        Log.e( TAG, "RuntimeException during surfaceChanged" );
    }
}

I'm not getting any errors, even where I'm catching Exceptions. It's just a display issue. Also, if I go back one more time to the screen before the Camera screen, then enter the Camera screen again, it displays fine. It's just when going back to the Camera screen from a child screen. Anyone know what I need to do in order to have the display work when re-entering a Fragment?

share|improve this question

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.