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

前端 未结 6 1109
余生分开走
余生分开走 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:46

    The error message you are seeing is caused by dereferencing a null pointer in native code. From what you show it's hard to guess what may be the cause.

    In your place I'd double check that you're not passing a null references to a system or library method.

提交回复
热议问题