Reputation: 189
I am new to Android development and am interested in working out a design of an application. I am however, unfamiliar with the best way to handle what I want to do. I am interested in obtaining information from my band's Joomla website and placing it into an Android application. At the moment I'd like to get News articles posted and potentially other information that I create on the site. I was thinking of doing this by setting up RSS feeds for the website. Would it be better to somehow access the data directly by connecting to the database? I don't know PHP so I can't develop a webservice to access the content. Any ideas?
Upvotes: 0
Views: 1831
Reputation: 9601
In this case I think using the RSS feed would work just fine and it saves the hassle of connecting directly to the database. Just use any XML parser. I think Jsoup would work:
Upvotes: 1