a litle research here and there and I managed to get the HomeTimeline by:
TwitterApiClient twitterApiClient = Twitter.getApiClient();
StatusesService statusesService = twitterApiClient.getStatusesService();
statusesService.homeTimeline(null, null, null, null, null, contributor_details, include_entities,
new Callback<List<Tweet>>() {
@Override
public void success(Result<List<Tweet>> result) {
//result.data contains every Tweet we need from HomeTimeline!!!!
}
public void failure(TwitterException exception) {
}
}
);
now I just need to work with views to get my HomeTimeline the way I want
Thanks for your attention…I think that it’s ok to close this topic…