How to make scrollable tab in Android?

后端 未结 4 1427
后悔当初
后悔当初 2020-12-13 21:19

I have 9 tab but in fill mode. I want to make these thabs scrollable. But i dont know the trick. I tried many methods but still nothing.

My Activity :



        
4条回答
  •  情歌与酒
    2020-12-13 21:29

    Set the Value of setTabMode to TabLayout.MODE_SCROLLABLE

    tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);
    

    And, you will be able to scroll tabs horizontally.

提交回复
热议问题