Answer the question
In order to leave comments, you need to log in
What is the best way to display RSS news in android app?
With the help of a GET request, I get an HTML page that can contain a lot of different content (pictures, videos, text), so the question is: how and where is it best to display all this goodness? The simplest option is WebView, but it is too cumbersome and inconvenient, and all the RSS readers that I have seen are clearly not using it.
Answer the question
In order to leave comments, you need to log in
If RSS - then the response to your GET request is probably still XML, not HTML.
Usually, the resulting XML (DOM or XML Sax) is parsed, and the resulting information is written to the database, for example.
And for display use ListView/GridView for each item of the response, by clicking on the ListView/GridView element, the full content of the item is displayed. Something like this.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question