Michael Doornbos
Michael Doornbos

Reputation: 61

Android RSS Example

How do you do you fetch a single RSS feed and show it in an ListView?

I realize there's hundreds of ways, but a clean and simple example would be appreciated.

Upvotes: 6

Views: 13796

Answers (4)

kranti
kranti

Reputation: 93

this is the best site for which you can create sample rss feed application. It consists all things xml parsing,http response,threads,handlers you will get good idea

http://androidresearch.wordpress.com/2012/01/21/creating-a-simple-rss-application-in-android/

Upvotes: 1

shanabus
shanabus

Reputation: 13115

The easiest sample I found was here. If you just pull in the classes (RSSItem, RSSParser, and code from the RSSListActivity) in this example you'll be all set in no time.

Upvotes: 0

JCasso
JCasso

Reputation: 5523

A complete application is here:
http://code.google.com/p/android-rss/

You can download the source code from svn. If you are familiar with Android, it will not be hard for you to solve what is going on.

Upvotes: 4

Related Questions