Android經過發送Intent播放本地視頻和網絡視頻

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.播放網絡視頻
  Intent intent = new Intent(Intent.ACTION_VIEW);
  String type = "video/* ";
  Uri uri = Uri.parse("http://xxxxxx/xxxxx.3gp");
  intent.setDataAndType(uri, type);
  startActivity(intent);   
  若是不設置type的話,這樣寫:
  intent intent = new Intent(Intent.ACTION_VIEW);
  Uri uri = Uri.parse("http://xxxxxx/xxxxx.3gp");
  intent.setData (uri);
  startActivity(intent);  
  這樣會默認用瀏覽器打開這個URL!
瀏覽器

相關文章
相關標籤/搜索