НЕИСПРАВНЫЙ СИГНАЛ 11 (Sigsegv) по адресу 0x00000000 (код = 1)?

Почему возникает эта проблема?

public static String path;
private VideoView mVideoView;


mVideoView = (VideoView) findViewById(R.id.surface_view);
mVideoView.setVideoPath(path);
mVideoView.setMediaController(new MediaController(this));
mVideoView.requestFocus();

//...

    private int mLayout = VideoView.VIDEO_LAYOUT_ZOOM;

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        if (mVideoView != null)
            mVideoView.setVideoLayout(mLayout, 0);
        super.onConfigurationChanged(newConfig);
    }

this is error

15
задан Ersin Gülbahar 28 May 2012 в 16:38
поделиться