Tab not taking full width on Tablet device [Using android.support.design.widget.TabLayout]

前端 未结 12 2086
萌比男神i
萌比男神i 2020-11-28 17:39

I have setup tabs as UPDATE 29/05/2015 this post. Tabs take full width on my Nexus 4 mobile but on nexus 7 tablet it in center and not cover full screen wid

12条回答
  •  清酒与你
    2020-11-28 18:14

    To force tabs to take up the full width (split into equal sizes), apply the following to the TabLayout view:

    TabLayout tabLayout = (TabLayout) findViewById(R.id.your_tab_layout);
    tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
    tabLayout.setTabMode(TabLayout.MODE_FIXED);
    

提交回复
热议问题