Reputation: 255
Hello i am looking for a code snippet or even better for an android library for reading rss (atom) feeds. Thanks in advance!
Upvotes: 0
Views: 835
Reputation: 2858
You can also try this open source library: https://github.com/Pkmmte/PkRSS
It's very lightweight and easy to use. It supports RSS2 and Atom by default but allows you to plug in your own custom parser as well.
For example, the following code loads a feed url in the background:
PkRSS.with(this).load(url).async();
There are more details on the GitHub page.
Upvotes: 0
Reputation: 34657
ROME is a closed-source, feed reader for Android. If you need help, I've used the J2SE version of it extensively, but not the Android version, so feel free to ask.
Upvotes: 1