by making use of TweetTimeListAdapter im able to show the tweets in my application. How do I retrieve the specific details like the message and the timestamp itself?
final UserTimeline userTimeline = new UserTimeline.Builder()
.screenName("<Your_ScreenName>")
.build();
final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter(this, userTimeline);
I tried using the adapter class but to no avail. Thanks!
EDIT 1: Adapter.getCount prints out 0 when there is 2 tweets loaded into the listview.
EDIT 2 Adpater.getTweets is not a valid function.