使用默认播放器
从内部存储打开视频File newVideoPath= Environment.getDataDirectory();;
System.out.println("--------------->"+newVideoPath.getPath());
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(newVideoPath.getParent()+"/myvid.mp4"));
intent.setDataAndType(Uri.parse(newVideoPath.getPath()+"/myvid.mp4"), "video/mp4");
startActivity(intent);
我将视频复制到Android/data
,但MXPlayer打开并说无法播放视频。我做错了什么?