开发者

Flickr and Youtube integration on Android [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not curre开发者_如何学Pythonntly accepting answers.

Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.

Closed 9 years ago.

Improve this question

HI ALL

I need to show :

1) Photostream of a particular account on flickr in a grid view. 2) List OR Grid of you tube videos for a particular channel.

Please suggest tutorials OR link to do that.

Thanks..


For flicker use "photostream app" and for showing youtube channels use gdata api OR if you simply need to show videos in a list view and play them. You can parse the response from following url:

http://gdata.youtube.com/feeds/api/users/username/uploads

get the data from every "entry" tag. Use the following intent to play the url in youtube app:

    Intent i = new Intent(Intent.ACTION_VIEW, Uri
                        .parse("vnd.youtube:" + url));
                startActivity(i);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜