These are final version project files of the Team Treehouse's Build a Blog Reader App in Android, provides to show Team Treehouse Blog Page in your application. It is a really helpful tutorial for understading the base logic of Android Life Cycle. It provides the sufficient information about getting the JSON data from server and how to handle it. I didn't follow the same path that the tutor instructs, tried to write a Custom Adapter which will be always needed to make your own design. You can learn how to use [WebView] (http://developer.android.com/reference/android/webkit/WebView.html) as well.
With the app, you can:
- Fetch the blog topic title then show them in a ListView. If you click on the ListView Item, you can show the detail web page in WebView Activity.
This app uses Team Treehouse's api to fetch data from server. You can query it like as following http://blog.teamtreehouse.com/api/get_recent_summary/?count=" + NUMBER_OF_POSTS It provides you the recent topics on blog and NUMBER_OF_POSTS part is an integer value that can be changeable up to you. It specifies the number of posts that will be shown.