yangyzheng / SimpleTwitterClient

A simple Twitter client that supports viewing a Twitter timeline and composing a new tweet.
0 stars 0 forks source link

[AndriodBootCamp] Week 3 project review request #1

Open yangyzheng opened 9 years ago

yangyzheng commented 9 years ago

To @nesquena and @thecodepath, please review my 3rd week project. Still working on the persistence...

Thanks a lot!

Yang

codepathreview commented 9 years ago

:+1: nice work Yang. A few notes after checking out the code:

Here's a detailed Project 3 Feedback Guide here which covers the most common issues with this submitted project. Read through the feedback guide point-by-point to determine how you could improve your submission.

Let us know if you have any other thoughts or questions about this assignment. Hopefully by now you feel pretty comfortable with all the major pieces to basic Android apps (Views, Controllers, ActionBar, Navigation, Models, Authentication, API Communication, Persistence, et al) and see how they all fit together. We are close now to a turning point in the course where you should be hitting a "critical mass" towards your knowledge of Android.

codepathreview commented 9 years ago

About your questions :

  1. favourites_count is present in all timeline APIs response, it is part of each tweet object. Check here - https://dev.twitter.com/rest/reference/get/statuses/home_timeline
  2. Yes, if we want to develop reusable pieces in Android, we make them as fragments.