ahorn / android-rss

Lightweight Android library to parse RSS 2.0 feeds.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for changing RSSHandler::RSS_ITEM

javierj opened this issue · comments

The feed I am Reading uses the tag "entry" instead of "item". The name of tag is encoded in a private final static field in class RSSHandler. So I have changed the string in the source code.

It would be nice a way to set this tag name without modifying the original source code.

Thank you.

I suspect you are parsing an Atom feed. You should, therefore, use an Atom library.

Yes, your right ;) Thank you very much,