itgoyo / AndroidSummary

12 stars 4 forks source link

Tablayout条目不能等分解决方式 #33

Open itgoyo opened 6 years ago

itgoyo commented 6 years ago

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" />