May the problem be the fact of having a ListView inside a ScrollView? If thats the case, there is any way I can use the adapter on a RecyclerView instead of the ListView? ListView honestly is not my main pick it has too many layout limitations.
EDIT–
Oddly I tested it again, removed the scrollview.
I tested using two different timelines, UserTimeline and CollectionTimeline. UserTimeline works perfectly, but the CollectionTimeline does not, no matter what I do or change, I dont believe it Layout related because it worked perfectly using UserTimeline.
This is the code I used:
tweetview = (ListView) findViewById(R.id.tweetView);
final CollectionTimeline timeline = new CollectionTimeline.Builder()
.id(766080906511708163L)
.build();
final UserTimeline userTimeline = new UserTimeline.Builder()
.screenName("wezzlecorp")
.build();
final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter.Builder(this)
.setTimeline(userTimeline)
.build();
tweetview.setAdapter(adapter);