TabLayout not filling width when tabMode set to 'scrollable'

前端 未结 17 792
傲寒
傲寒 2020-12-02 16:58

I have added TabLayout (from support library v22.2.1) to my Fragment as:



        
17条回答
  •  猫巷女王i
    2020-12-02 17:23

    Instead of creating custom TabLayout and hacking around or creating more layouts which acts as wrapper around TabLayout only for background. Try this,

    
        android:background="@color/colorAccent"
        app:tabGravity="fill"
        app:tabMode="scrollable"/>
    

    This will set background to behind tabLayout instead of setting background behind every tab.

提交回复
热议问题