Hi,
I’m successful in showing User Timeline using Fabric, it’s pretty straight forward to implement. The code snippet followed.
UserTimeline userTimeline = new UserTimeline.Builder().userId(userId).build();
TweetTimelineListAdapter timelineAdapter = new TweetTimelineListAdapter(this, userTimeline);
setListAdapter(timelineAdapter); //Android ListView adapter
The above code implemented with Android Listview. Is there anyway to update user Timeline(ListView adapter) as it gets updated in Twitter? The requirement is,The app must update itself in the background so that posted tweets do show up automatically, even though they might be posted through the Twitter website
Any help would be appreciated.