facebook twitter hatena line email

「Android/VideoView/ローカル動画表示」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==サンプル== VideoView mVideoView; String fileName = "android.resource://"+ getPackageName() + "/raw/video"; // main/res/raw/video.mp4 Uri uri = Uri.parse(fileNa...」)
 
(サンプル)
 
行1: 行1:
 
==サンプル==
 
==サンプル==
  VideoView mVideoView;  
+
  VideoView mVideoView;
 
  String fileName = "android.resource://"+  getPackageName() + "/raw/video"; // main/res/raw/video.mp4
 
  String fileName = "android.resource://"+  getPackageName() + "/raw/video"; // main/res/raw/video.mp4
 
  Uri uri = Uri.parse(fileName);
 
  Uri uri = Uri.parse(fileName);

2019年3月27日 (水) 10:52時点における最新版

サンプル

VideoView mVideoView;
String fileName = "android.resource://"+  getPackageName() + "/raw/video"; // main/res/raw/video.mp4
Uri uri = Uri.parse(fileName);
mVideoView.setVideoURI(uri);
mVideoView.start();

参考:https://stackoverflow.com/questions/8269353/how-to-load-videos-from-assets-folder-to-play-them-with-videoview/8269517