0

Hello i am looking for a code snippet or even better for an android library for reading rss (atom) feeds. Thanks in advance!

Dan Lowe
  • 51,713
  • 20
  • 123
  • 112
MOST2K2
  • 255
  • 4
  • 14

2 Answers2

1

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.

hd1
  • 33,938
  • 5
  • 80
  • 91
  • I know Rome and i cant get it to work in android. I think the j2se version is using beans internally, isnt? – MOST2K2 Dec 02 '12 at 22:22
  • 1
    I linked to the android version of it. If it doesn't work, you can try the J2SE version – hd1 Dec 03 '12 at 17:35
0

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.

Pkmmte
  • 2,822
  • 1
  • 31
  • 41