I'm working on an Android application, where I have to show an specific timeline. Well I have added fabric.io and I also created a twitter app(I mean I got the keys). So I really don't know how can I get the twitts on my class to display them on my listview. let see the code below:
TwitterAuthConfig authConf =
new TwitterAuthConfig(this.getResources().getString(R.string.consumerKey),
this.getResources().getString(R.string.consumerSecret));
Fabric.with(this, new Twitter(authConfig));
final UserTimeline userTimeline = new UserTimeline.Builder()
.screenName("TwitterUser")
.build();
So, how can I grab the tweets from the userTimeline
. Maybe I'm confuse and I'm implementing it wrong.