↧
Answer by Vasile Surdu for Display image using a RSS feed
there is a library for downloading and caching images in background from the URL https://github.com/koush/UrlImageViewHelperSample =)
View ArticleAnswer by Jeffrey Blattman for Display image using a RSS feed
are you asking how to get the image URL from the XML RSS feed? there's nothing built into the SDK that's going to help you parse the XML, other than SAX or DOM which you have already noted. there is a...
View ArticleAnswer by kcoppock for Display image using a RSS feed
Best way to DISPLAY the image? I'm not sure if that's actually what you're asking, but just use an ImageView. Use an AsyncTask to download the image in the background, and then create a new Drawable...
View ArticleDisplay image using a RSS feed
I have an application in which use a RSS feed reader. My problem is that I don't know what is the best way to display an image. The closer I could get was to pull the image description (). I know I...
View Article