有没有办法在Android中链接到YouTube视频的特定部分?

时间:2013-08-05 10:17:21

标签: android youtube

在网站上进行此操作的简便方法是什么? http://youtubetime.com/

但是在android中我在下面的代码中出现了错误

 String video_id="6ZI123IWB2Q"&t=3m37s";        
 Intent intent = new Intent(Intent.ACTION_VIEW, (Uri.parse("vnd.youtube://" + video_id)));
 startActivity(intent);

也许其他方式可以在哪里这样做? 提前谢谢。

1 个答案:

答案 0 :(得分:0)

startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse(“http://www.youtube.com/watch?v=”+ video_id)));