如何在Android原生播放器中播放YouTube视频?如果有人达成了这个,请让我知道。
答案 0 :(得分:0)
http://apiblog.youtube.com/2012/12/no-webview-required-with-native-youtube.html
也许这个链接会有所帮助?有各种API可以为您实现这一目标。
API是应用程序接口的缩写,是一组用于构建软件应用程序的例程,协议和工具。一个好的API可以通过提供所有构建块来更轻松地开发程序。程序员然后将块放在一起。特别是此API应该为您提供最好的帮助。答案 1 :(得分:0)
您可以在此处查看API: https://developers.google.com/youtube/android/player/downloads/
然后您需要注册您的应用程序(获取API密钥) https://developers.google.com/youtube/android/player/register
然后您只需将所需的方法添加到您的Activity中: https://developers.google.com/youtube/android/player/reference/com/google/android/youtube/player/YouTubePlayerView
还有createPlayVideoIntentWithOptions,它会打开设备上安装的本机youtube应用程序
public static Intent createPlayVideoIntentWithOptions (Context context, String videoId, boolean fullscreen, boolean finishOnEnd)
答案 2 :(得分:0)