Hi everyone,
I been using the fabric API to get the tweets populated from the setListAdapter(adapter) function.
It is great, simple and good. But I wish to get the details of the tweets like the tweet content and the timestamp of the tweet. How do I go around doing it? I been stuck for several hours.
Adapter.getCount returns me 0 too. So i guess it might be due to the adapter being a REST service.
final UserTimeline userTimeline = new UserTimeline.Builder()
.screenName("<User_name>")
.build();
final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter(this, userTimeline);
setListAdapter(adapter);
System.out.println("OBJ: "+ adapter.getCount());
Thanks!