Simplistic RSS

General

Category
Free
Tag
RSS
License
MIT License
Registered
Jul 5, 2014
Favorites
2
Link
https://github.com/ShirwaM/Simplistic-RSS
See also
ahorn/android-rss
Simple-Rss2-Android
News+
AndroidRivers
Syndication

Additional

Language
Java
Version
N/A
Created
May 29, 2014
Updated
Apr 28, 2019 (Retired)
Owner
Shirwa Mohamed (ShirwaM)
Contributors
Aidan Follestad (afollestad)
Shirwa Mohamed (ShirwaM)
2
Activity
Badge
Generate
Download
Source code

Simplistic-RSS

This is a very simple RSS library for Android. Supports extracting the url of images if they are present. Its still very early, but it will continue to get better with updates.

Sample App

Usage

Create an RssReader by passing in the url of the RSS feed

RssReader rssReader = new RssReader(url);

Get a list of all the items that have been extracted from the Rss feed

ArrayList<RssItem> RssItems = rssReader.getItems();

Customization

*If you want to add a new attribute to the Rss item, edit the RssItem class to contain getters/setters for the specific attribue.

*Then follow basic outline in the RssHandler class.