I am new to Android. I want to parse RSS feed. I have this feed “http://www.google.com/ig/api?weather=%27melbourne%27” a weather feed from google. How can I grab the XML data and convert that into Json object that I’ll use to populate a listView later on? Or is there any other fast way to parse rss feed in Android? Thank you.
Share
I guess your best bet is to implement a SAXParser to parse the XML content into an Java object (or a list of Java objetcs). I don’t think you need to convert it to JSON if you just want to populate the data into a list view.
for more information about a SAXPArser: Google and stackoverflow search are your friends 😉