想要播放YouTube播放列表

时间:2011-12-13 12:33:21

标签: android youtube playlist

我想从我的应用程序中启动YouTube播放列表。

对于单个视频,这很明显

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

但我的播放列表有问题。当我将链接放到播放列表时,它总是只播放一个视频。

2 个答案:

答案 0 :(得分:0)

检查您是否在整个播放列表中传递相同的网址(http://www.youtube.com/watch?v=videoid)。检查videoid的值是否相同。

答案 1 :(得分:0)

在您的应用中使用YouTube功能的最佳方式是使用YouTube API for Android。您可以从文档和示例应用中了解如何使用 YouTube API

如果您使用 YouTube API ,要启动播放列表,您必须在您的活动中执行此操作:

String PLAYLIST_ID = "UCVHFbqXqoYvEWM1Ddxl0QDg";

//"this" is Context
Intent intent = YouTubeIntents.createPlayPlaylistIntent(this, PLAYLIST_ID);
startActivity(intent);

请参阅方法的文档here