I'm using SurfaceView with MediaPlayer. When the video is playing everything works as expected, it changes its size acoording to the new orientation and keeps playing. The problem is when paused. When the video is in pause state, it is visible, but then, when I changes orientation it turns black, every thing else stays the same like my seekbar and a text view. this is how I handle orientation changes:

public void onConfigurationChanged(Configuration newConfig) { 
        super.onConfigurationChanged(newConfig);
        setVideoSize(mediaPlayer);
        surfaceView.setLayoutParams(
                new FrameLayout.LayoutParams(videoWidth,videoHeight));  

        ((FrameLayout.LayoutParams) surfaceView.getLayoutParams()).gravity =     Gravity.CENTER;
    }

setVideoSize() sets videoWidth and videoHeight according to the screen resolution. How come that when playing it works and when paused, it doesn't?

link|improve this question
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.