我将视频MP4放到了我的域名空间.我有它的公共URL,现在我想在我的Android应用程序中播放它;但不知道我怎么能这样做.我使用了以下无效的代码.轨道控制器正在移动,但我在屏幕上看不到任何视频.
public class MPlayer extends Activity{
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.playvideo);
VideoView videoView = new VideoView(MPlayer.this);
videoView.setMediaController(new MediaController(this));
videoView.setVideoURI(Uri.parse("http://www.semanticdevlab.com/abc.mp4"));
videoView.requestFocus();
videoView.start();
LinearLayout l = (LinearLayout)findViewById(R.id.mplayer);
l.addView(videoView);
}
}
解决方法:
大多数时候,我使用以下代码:
MediaPlayer mp = new MediaPlayer();
mp.setDataSource(PATH_TO_FILE);
mp.prepare();
mp.start();
有关更多信息,请查看此页面:http://developer.android.com/guide/topics/media/index.html
和
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/media/MediaPlayerDemo_Video.html