FATAL SIGNAL 11 (Sigsegv) at 0x00000000 (code=1)?

前端 未结 6 1117
余生分开走
余生分开走 2021-02-04 06:49

Why does this problem occur?

public static String path;
private VideoView mVideoView;


mVideoView = (VideoView) findViewById(R.id.surface_view);
mVideoView.setV         


        
6条回答
  •  离开以前
    2021-02-04 07:30

    Most likely a threading problem... I once ran in a Fatal Signal 11 as well, when I was doing stuff on the wrong thread...

    Probably the setVideoLayout()-call in you onConfigurationChanged() implementation.

    Would be helpful tho, if you could post some more code...

提交回复
热议问题