TabLayout文字重力开始

时间:2019-07-08 09:04:40

标签: android tabs android-tablayout android-tabs

我正在寻找将选项卡布局文本显示为开始的解决方案(仅适用于2个选项卡)。 我想实现的目标:

enter image description here

我目前有什么:

enter image description here

我的XML代码如下:

<com.google.android.material.tabs.TabLayout
        android:id="@+id/tab_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/margin_10"
        android:layout_marginStart="@dimen/margin_15"
        android:layout_marginEnd="@dimen/margin_15"
        android:gravity="start"
        android:textAlignment="viewStart"
        app:tabGravity="fill"
        app:tabTextAppearance="@style/CustomTextAppearanceTab"/>

1 个答案:

答案 0 :(得分:0)

您可以这样做...

<android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="wrap_content"
                android:layout_height="?attr/actionBarSize"
                android:layout_gravity="center_horizontal"
                android:layout_marginStart="@dimen/margin15dp"
                android:layout_marginEnd="@dimen/margin15dp"
                app:tabIndicatorColor="@color/fontBlue"
                app:tabIndicatorHeight="2dp"
                app:tabMode="scrollable"
                app:tabSelectedTextColor="@color/fontBlue"
                app:tabTextAppearance="@style/CustomTextStyle"
                app:tabTextColor="@color/fontPrimary100">
            </android.support.design.widget.TabLayout>

快乐编码:)