You may use any vertical View Pager. I found this one https://github.com/yrulee/VerticalViewPagerSample
and this docs show how get tweet by id (long) https://docs.fabric.io/android/twitter/show-tweets.html
it’s exactly what I need
final List<Long> tweetIds = Arrays.asList(510908133917487104L);
TweetUtils.loadTweet(tweetId, new Callback<Tweet>() {
@Override
public void success(Result<Tweet> result) {
mTweetLayout.removeAllViews();
mTweetLayout.addView(new TweetView(getActivity(), result.data));
}
@Override
public void failure(TwitterException exception) {
Log.e(TAG, "Sign in failure", exception);
}
});