「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();