TabLayout selected Tab icon is not selected on start up

前端 未结 6 433
小鲜肉
小鲜肉 2021-01-17 14:14

I\'m using a TabLayout for Tabbed navigation in my app. I have a really weird issue with it, I have created 4 tabs using this code:

private int[         


        
6条回答
  •  一整个雨季
    2021-01-17 14:54

    here is solution, paste this code in you onCreate Activity because using tabs 0 index not triggers directly this is easy way to do

     viewPager.setCurrentItem(1);
        if (viewPager.getCurrentItem()==1)
        {
            viewPager.setCurrentItem(0);
        }
    

提交回复
热议问题