如何在TabLayout(Android设计支持库)中更改下划线的长度

时间:2016-12-29 07:35:12

标签: android android-layout

我正在使用Tablayout + ViewPager作为UI框架。 tablayout中有一个选定标签的下划线。文本长度和下划线长度不相等。我想要它们相等 这该怎么做? 非常感谢

4 个答案:

答案 0 :(得分:1)

您可以更改<android.support.design.widget.TabLayout android:id="@id/pages_tabs" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabIndicatorColor="@android:color/white" app:tabIndicatorHeight="4dp"/> 颜色和高度,如下所示

app:tabMaxWidth="30dp"

AFAIK您将标签指示器长度设置为其标签宽度,您不能仅更改指标大小 如果您真的想要更改,请尝试更改 tabWidth ,以便指标也随此更改而变化。

{{1}}

答案 1 :(得分:0)

app:tabMinWidth="210dp"
app:tabMaxWidth="110dp"

在XML中添加这两行代码。它取决于您的标签项。您可以一次修改只增加和减少。

Check this picture

答案 2 :(得分:0)

我有相同的要求。您可以使用

app:tabIndicatorFullWidth =“ false”

我希望这对您有用。

答案 3 :(得分:-2)

您可以在制表符布局上添加其他布局并相应地填充。

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:layout_below="@+id/toolbar"
        android:id="@+id/tabLayout"
        android:background="@color/colorTangerine">

    <com.techlabs.oodhaar.views.CustomTabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabBackground="@color/colorTangerine"
        app:tabIndicatorColor="@color/colorBackground"
        app:tabSelectedTextColor="@color/colorBackground"
        app:tabTextColor="@color/colorBackground"
        app:tabIndicatorHeight="4dp"
        />
    </RelativeLayout>