as I'm new in developing Android apps, I'm here for some help about creating one for specific website. The task is to make app for news: there is supposed to be menu with categories like Business, Fun, Sport etc. with list of titles and pubDates for example (listView) and when you click on the item the whole news opens (title, date, images, content or similar).
Website has RSS with structure like this:
<?xml version="1.0" encoding="utf-8"?><rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<item>
<guid isPermaLink="true">http://www.balkanmagazin.net/novosti-i-politika/cid128-57413/putin-i-kiril-cvrsto-zajedno</guid>
<link>http://www.balkanmagazin.net/novosti-i-politika/cid128-57413/putin-i-kiril-cvrsto-zajedno</link>
<category>Novosti i politika</category>
<title>Putin i Kiril čvrsto zajedno</title>
<description><img alt="" style="" src="/Storage/Global/DynamicImage/cid-57413- 455-253-Kiril-Putin-ilu61cc0f32-1ea0-4049-9455-259d70fda69d.jpg" />
<p>Važnije od ljudskih prava su vera, moral, svetinje i otadžbina, smatra Ruska pravoslavna crkva, ušančena u rovu odbrane Rusije od Zapada zajedno s Kremljom<br/>(foto: patrijarh Kiril i predsednik Putin)</p>
</description>
<pubDate>Tue, 05 Feb 2013 01:12:12 +0100</pubDate>
</item>
...
</channel>
I'm asking are these tags enough to provide content and images from articles? Is there any way to get them from description or link tag or RSS feed has to have content tag for that?
Any help would be appreciated.