标签: android
可能重复: Android YouTube app Play Video Intent
我将实现访问youtube视频的应用程序。我是android新手,请给我一些与我的应用程序相关的示例程序链接。
提前致谢。
答案 0 :(得分:0)
您可以使用ACTION_VIEW意图 startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.youtube.com/watch?v=<something>")));
ACTION_VIEW
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.youtube.com/watch?v=<something>")));
This页面有更多详情