I can get a Tweet object by
Tweet tw = tweets.get(position);
then i can get it’s user by
tw.user.name
tw.user.screenName
And I can also get it’s text by
tw.text
But how can i get it’s picture?
I tried with entities.media but entities is always null
Another question is about a retweeted tweet, text comes with a retweet tag, is there a simple way to remove that tag or I need to do it in my code?