i am trying to serach username ,hastag by using fabric api . but it always give me o count . may i know how to get username and hastag
my code as below
TwitterAuthConfig authConfig = new TwitterAuthConfig(TWITTER_KEY,
TWITTER_SECRET);
Fabric.with(this, new Twitter(authConfig));
setContentView(R.layout.activity_main);
SearchTimeline searchTimeline = new SearchTimeline.Builder().query(
"#twitterflock").build();
final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter.Builder(
this).setTimeline(searchTimeline).build();
Log.v("ta", "" + adapter.getCount());
can any one help me out