↧
Answer by Parth Dani for How to get an image from xml data by parsing
The following URL will help you to get the answer for your questionhttp://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/
View ArticleAnswer by sachy for How to get an image from xml data by parsing
For parsing xml use XmlPullParser. Once the url is fetched you can download it easily.
View ArticleAnswer by NullPointerException for How to get an image from xml data by parsing
You have to do http request for the image saperately isn't it??Do the http request and save the image on sdcard and then use that sdcard path to show it in your imageview..
View ArticleHow to get an image from xml data by parsing
I have an xml structure like this<element><foodjoint_name>DineOut</foodjoint_name><logo>http://192.168.1.112/dineout/images/dominos.jpg</logo></element>I am parsing...
View Article