如何在Android应用程序中播放youtube嵌入式代码?

时间:2011-04-28 05:03:27

标签: android video embedded youtube

大家好,这是我的youtube嵌入代码 但我不知道如何在Android应用程序中播放这个? 我们可以在webview或设备播放器中播放吗?

"object width="441" height="353"  
param name="movie" value="http://www.youtube.com/v/u1zgFlCw8Aw?fs=1" param  
param name="allowFullScreen" value="true" param  
param name="allowScriptAccess" value="always" param  
embed src="http://www.youtube.com/v/u1zgFlCw8Aw?fs=1"  
type="application/x-shockwave-flash"  
allowfullscreen="true"  
allowscriptaccess="always"  
width="441" height="353"  
embed>  
object"  

1 个答案:

答案 0 :(得分:0)

我用它来启动默认设备播放器 -

Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(url));
// use this if you want to launch from a non activity class
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
context.startActivity(intent);

希望这有帮助。