问题描述
我正在编写一个应用程序,我想在其中显示 YouTube 视频列表.但我希望列表显示带有一些其他信息的视频标题,同时还显示视频的缩略图,就像我们访问 www.youtube.com
I writing an app where i want to display a list of YouTube videos. But I want the list to display the video title with some other info but also show a thumbnail of the video like it does when we go www.youtube.com
有人可以帮助我如何显示视频 URL 的缩略图吗?
Can someone help me please on How to display the thumbnail for a video URL?
推荐答案
试试这个:
从 URL 解析视频 ID:这是 URL 中的v"参数.IE.http://www.youtube.com/watch?v=xAiiwSXVRiw
通过 Youtube Gdata URL 获取视频元数据:http://gdata.youtube.com/feeds/api/videos/xAiiwSXVRiw
Get the video metadata via Youtube Gdata URL: http://gdata.youtube.com/feeds/api/videos/xAiiwSXVRiw
解析返回的 XML 并查找 .'url' 属性包含缩略图 url.
Parse the XML that you get back and look for <media:thumbnail url='..'>
. The 'url' attribute contains to the thumbnail url.
这篇关于如何在 Android 中显示 YouTube 视频的缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!