经过网上多次研究后,我不得不问你关于 Android上的流媒体,我如何通过指定网址来读取流媒体<或者至少如何< strong>在我的 Android应用程序上集成YouTube视频?非常感谢
答案 0 :(得分:1)
您可以使用此库http://code.google.com/p/android-youtube-player/
使用该库非常容易。
代码示例:
Intent lVideoIntent = new Intent(null, Uri.parse("ytpl://"+YOUTUBE_PLAYLIST_ID), this, OpenYouTubePlayerActivity.class);
startActivity(lVideoIntent);
The YouTube Data API允许程序执行YouTube上提供的许多操作。