Reading content from XML tags with the same title
in
Programming Questions
•
2 years ago
Hello again, my program is nearing completion and the only thing I have left to do is pull all the blog posts from an rss feed and display them.
What I have so far works.
- String url = "http://syobonaction.tumblr.com/rss";
- XMLElement rss = new XMLElement(this, url);
- XMLElement desc = rss.getChild("channel/title");
- lines2 = desc.getContent();
BUT I need to pull the content from every <title> tag instead of just one. Does anyone know how to do this?
Thank you :)
1