Why does this problem occur?
public static String path; private VideoView mVideoView; mVideoView = (VideoView) findViewById(R.id.surface_view); mVideoView.setV
Most likely a threading problem... I once ran in a Fatal Signal 11 as well, when I was doing stuff on the wrong thread...
Fatal Signal 11
Probably the setVideoLayout()-call in you onConfigurationChanged() implementation.
onConfigurationChanged()
Would be helpful tho, if you could post some more code...