tablayout select tab programmatically android code example
Example: how to change tablayout current view position in android
void selectPage(int pageIndex){
tabLayout.setScrollPosition(pageIndex,0f,true);
viewPager.setCurrentItem(pageIndex);
}