I would like to have a reply icon in the timeline view for TwitterKit for Android. I currently have the following code:
UserTimeline userTimeline = new UserTimeline.Builder().screenName("twitterdev").build();
final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter.Builder(getContext())
.setTimeline(userTimeline)
.setViewStyle(R.style.tw__TweetLightWithActionsStyle)
.build();
listView.setAdapter(adapter);
From my understanding, R.style.tw__TweetLightWithActionsStyle enables buttons, but doesn’t provide any actual styling. How would I go about adding a reply icon to the tweet item in my timeline list?