当我在活动中播放视频时,其他应用程序正在停止播放音频/视频。
Uri video = Uri.parse("android.resource://" + getActivity().getPackageName() + "/"
+ splash_vid);
splashvideo.setVisibility(View.VISIBLE);
splashvideo.setZOrderOnTop(false);
splashvideo.setZOrderMediaOverlay(true);
splashvideo.setVideoURI(video);
splashvideo.setOnCompletionListener(mp -> jumpBack());
splashvideo.requestFocus();
splashvideo.setDrawingCacheEnabled(true);
splashvideo.setOnErrorListener(this);
splashvideo.start();
splashvideo.setOnCompletionListener(this);
splashvideo.setOnPreparedListener(this);