0

在网站上做这件事的简单方法是什么, 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);

也许还有其他方法可以做到这一点?先感谢您。

4

1 回答 1

0

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

于 2013-08-05T10:21:51.213 回答