This is an Android application that uses the Twitter API to retrieve home and mention timelines for a logged in user. It also allows the user to compose messages and view profiles of other users.
- Android Async is used to make HTTP requests to Twitter API
- Images are retrieved by Picasso
- makeramen:roundedimageview is used to transform user photos to have rounded edges
- It has a custom onScrollListener to support "infinite" scrolling of tweets
- Users can sign in to Twitter using OAuth login
- astuetz:pagerslidingtabstrip is used to manage tabs
Note: API Key and Secret need to be replaced with your own key and secret
Mini-Twitter/app/src/main/java/com/codepath/apps/TwitterClient/
22 public static final String REST_CONSUMER_KEY = "XXXXXX";
23 public static final String REST_CONSUMER_SECRET = "XXXXXX";
