Android 利用发送Intent播放本地视频和网络视频 (转载)

http://blog.sina.com.cn/s/blog_a000da9d01011y85.html


Android中除了利用VideoView、Mediaplayer播放视频文件外,还可以用发送Intent来调用视频播放模块。

 

方法如下:

 

1.播放本地视频

 

        Intent intent = new Intent(Intent.ACTION_VIEW);
        String type = "video/mp4";
        Uri uri = Uri.parse("file:///sdcard/test.mp4");
        intent.setDataAndType(uri, type);
        startActivity(intent);   

 

2.播放网络视频

扫描二维码关注公众号,回复: 4145238 查看本文章

 

        Intent intent = new Intent(Intent.ACTION_VIEW);
        String type = "video/* ";

   Uri uri = Uri.parse("http://forum.ea3w.com/coll_ea3w/attach/2008_10/12237832415.3gp");
        intent.setDataAndType(uri, type);
        startActivity(intent);   

 

     注意红色部分,如果不设置type的话,这样写:

       Intent intent = new Intent(Intent.ACTION_VIEW);

  Uri uri = Uri.parse("http://forum.ea3w.com/coll_ea3w/attach/2008_10/12237832415.3gp");
       intent.setData (uri);
       startActivity(intent);  

这样会默认用浏览器打开这个URL!

猜你喜欢

转载自blog.csdn.net/yhyqf/article/details/51735200
今日推荐