调用android系统本地的播放器播放本地视频或者网络视频

隐式意图跳转播放本地视频:

Intent it = new Intent(Intent.ACTION_VIEW);

                  Uri uri = Uri.parse(videoFilePath);
                  it.setDataAndType(uri, "video/mp4");

                  startActivity(it);(亲自测试可用)


播放网络视频:

Uri uri = Uri.parse("网络视频地址");  
        VideoView videoView = (VideoView)this.findViewById(R.id.video_view);  
        videoView.setMediaController(new MediaController(this));  
        videoView.setVideoURI(uri);  
        videoView.start();  
        videoView.requestFocus();(来至网络,未测试时候能播放)

你可能感兴趣的:(调用android系统本地的播放器播放本地视频或者网络视频)