With this code, I get a list of user posts (his tweets):
public void getwalltw(){ final UserTimeline userTimeline = new UserTimeline.Builder() .build(); final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter.Builder(getActivity()) .setTimeline(userTimeline) .build(); setListAdapter(adapter); Is there anything like that to get a list of tweets from the pages to which the user is subscribed? That is, what we see when we go to the "Home" tab on Twitter. Thank.