MyFeed
An Android RSS feed reader built with Java and XMLPullParser.
MyFeed is a learning-oriented Android app that uses RSS as a concrete way to practice parsing, networking, and interface construction.
Problem
RSS readers are a good practical exercise because they combine networking, XML parsing, storage decisions, and mobile UI.
Implementation
MyFeed uses Java and XMLPullParser to keep the parsing path explicit and understandable.
What it does
- Demonstrates XML feed parsing in a small Android app.
- Keeps the app structure approachable for learning and experimentation.