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 questionHI 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);
精彩评论