我想在app:tabMode="scrollable"
时集中TabLayout
我的TabLayout
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_gravity="center"
android:background="@android:color/white"
android:gravity="center"
android:visibility="visible"
app:tabGravity="fill"
app:tabIndicatorHeight="0dp"
app:tabMaxWidth="0dp"
app:tabMode="scrollable"
app:tabSelectedTextColor="@color/colorTabSelected"
app:tabTextAppearance="@style/CustomTextStyle"
app:tabTextColor="@color/colorTabNormal"></android.support.design.widget.TabLayout>
通过这种布局。这样的布局(但所有选项卡都向左对齐):
如果为
app:tabMode="fixed"
,则中心选项卡中的文本将比其他文本小。所以。如果
app:tabMode="fixed"
(所有标签在中心对齐),我希望TabLayout中所有文本的大小相同。如果app:tabMode="scrollable"
,我想集中制表符(如tabMode fixed
)。谢谢
最佳答案
SmartTabLayout库可以帮助您将选项卡始终置于中心。