# Android-RSS-Reader-Library **Repository Path**: oycocean/Android-RSS-Reader-Library ## Basic Information - **Project Name**: Android-RSS-Reader-Library - **Description**: A RSS reader library to fetch a RSS feed from the web and parse it to workable objects - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 8 - **Forks**: 0 - **Created**: 2015-08-05 - **Last Updated**: 2025-04-26 ## Categories & Tags **Categories**: rss, android-modules **Tags**: None ## README With this library you can easily parse RSS feeds using the SAX APIs available in Android. Usage ----- You can use the API by simply calling `RssReader.read(URL url)`. This will make the request to the url provided and parse it to `RssFeed` and `RssItem` objects. It can't get any easier than this. Here is an example of how to fetch a RSS feed and iterate through every item: URL url = new URL("http://example.com/feed.rss"); RssFeed feed = RssReader.read(url); ArrayList rssItems = feed.getRssItems(); for(RssItem rssItem : rssItems) { Log.i("RSS Reader", rssItem.getTitle()); } License ----- Copyright (c) 2011 Mats Hofman Licensed under the Apache License, Version 2.0