Android TabLayout 在宽屏幕上tab不能平均分配的问题解决

如下设置即可:
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMaxWidth="0dp"
app:tabGravity="fill"
app:tabMode="fixed" />

原文连接: http://blog.csdn.net/chenli_001/article/details/72844139

你可能感兴趣的:(Android TabLayout 在宽屏幕上tab不能平均分配的问题解决)