0

我正在执行此类代码以在 android 中播放视频...我通过 put extra 发送先前活动的视频链接。并尝试获取此页面中的链接

video = (VideoView) findViewById(R.id.VideoView);
String path = getIntent().getStringExtra("url");
video.setVideoURI(uri);
video.start();

我错过了什么吗?

4

2 回答 2

0

尝试这个....

    video = (VideoView) findViewById(R.id.VideoView);
    String path = getIntent().getStringExtra("url");

    Uri uri = Uri.parse(path);

    video.setVideoURI(uri);
    video.start();
于 2013-06-11T16:34:28.783 回答
0

像这样使用

 video = (VideoView) findViewById(R.id.VideoView);
    String path = getIntent().getStringExtra("url");
    video .setVideoURI(Uri.parse(path));
    video .setMediaController(new MediaController(this));
    video .requestFocus();
    video .start();
于 2013-06-11T16:50:28.913 回答