Working on a real project is the best way to learn a new programing language. In this tutorial, I will create a RSS Reader application for android step by step. This android application will read rss feed from the website, parse the xml and show all the post in a ListView. So we will cover following android development knowledge:
- Android Rss Reader Example 1: How to Use ListView and ArrayAdapter
- Android Rss Reader Example 2: Load Data by HTTP Request in Android
- Android Rss Reader Example 3: Parse XML in Android
- Android Rss Reader Example 4: Drag to Refresh ListView
- Android Rss Reader Example 5: Show WebSite Content in WebView
- Advanced Tutorial 6: Load Featured Image In ListView From Rss Feed
- Advanced Tutorial 7: Add Android Navigation Drawer Menu
In this android app example, I will implement a ListView which can show all the post entities from Rss feed. For each list cell view, there are three components, ImageView which is for post featured image, TextView which is for post title, and another TextView which will show post date.
Read more