MOST2K2
MOST2K2

Reputation: 255

Read RSS feeds with atom support

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

Answers (2)

Pkmmte
Pkmmte

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

hd1
hd1

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

Related Questions