当TabLayout 在宽屏幕的设备上,如平板横屏的时候,tab的宽度超过一定值后,就不在平均分配宽度,而是居中显示。此时设置

app:tabMode="fixed"或者
top_table.setTabMode(TabLayout.MODE_FIXED);不在起作用。
效果如图:

此时的解决办法,设置
app:tabMaxWidth="0dp" 此值即可解决
<android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMaxWidth="0dp"
            app:tabGravity="fill"
            app:tabMode="fixed" />

Naxus 7 screenshot