0

我环顾四周,想知道我是否可以使用默认视频播放器/webview 或视频视图在我的 android 应用程序中嵌入和播放这样的视频。

< script type = " text/javascript" src="http://URLHERE" > < / script >

我要么希望应用程序在默认视频播放器中播放此视频,要么在应用程序内的 WebView 中播放它。

我怎样才能做到这一点?

4

2 回答 2

1

您可以在示例中使用 VideoView。

VideoView videoView = (VideoView) findViewById(R.id.videoView);
//Use a media controller so that you can scroll the video contents
//and also to pause, start the video.
MediaController mediaController = new MediaController(this); 
mediaController.setAnchorView(videoView);
videoView.setMediaController(mediaController);
videoView.setVideoURI(Uri.parse(videoUrl));
videoView.start();
于 2013-04-19T05:14:31.917 回答
0

为此,您可以使用MediPlayer.setDataSourceVideoView.setVideoURI

如果您想通过 android 的媒体播放器播放在线流,MediaPlayer并且如果您想在应用程序中显示视图,请使用VideoView

于 2013-04-19T05:21:43.523 回答