I am working on an android app and I am new to the Fabric API.
I am trying to grab the string values of the tweets. I can populate a ListActivity with all the tweets(code taken from the documentation examples), but cannot figure out how to access that list to get the string values or even the tweet ids.
When i do this:
Log.d("", adapter.getItem(1).toString());
or
Log.d("", adapter.getItem(1));
it tells me “Invalid Index 1, size is 0”
any help would be much appreciated!
Thanks