具体的参数设置如下:
1. 宽度一定要设置成 match_parent, 即 android:layout_width="match_parent"
2. tabGravity设置成fill, 即 app:tabGravity="fill"
3. tabMaxWidth设置成 0dp, 即 app:tabMaxWidth="0dp"
4. tabMode设置成fixed, 即 app:tabMode="fixed"
完成以上四步就可以铺满整个屏幕宽度了
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabIndicatorColor="@color/bg_score_yellow"
app:tabMaxWidth="0dp"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/text_tb_title"
app:tabTextColor="@color/bg_play_label">
</android.support.design.widget.TabLayout>
本人遇到的情况是手机上可以正常的显示,即铺满宽度状态,但是换到平板上就不能铺满了,按照如上设置最后再平板上也能够铺满了。