I am new to twitter development, I have used searchtimeline.builder to search a query and putting results in a TweetTimelineListAdapter from Fabric for android. My problem is i would like to know the # of tweets about that query . i dont think timelineAdapter.getCount()); is the right solution. Help me out guys. Thanks.
SearchTimeline searchTimeline = new SearchTimeline.Builder()
.query(search_query)
.build();
final TweetTimelineListAdapter timelineAdapter = new TweetTimelineListAdapter(AnotherClass.this, searchTimeline);
setListAdapter(timelineAdapter);
getListView().setEmptyView(findViewById(R.id.loading));