更改标签宽度

时间:2018-05-25 15:08:23

标签: android tabs android-viewpager views

我的应用中的标签看起来像这样。

tabs

是否有任何方法可以在标签中为每个标题添加一行。

这是相应的xml文件。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <include
        android:id="@+id/main_page_toolbar"
        layout="@layout/app_bar_layout"/>

    <android.support.design.widget.TabLayout
        android:id="@+id/main_tabs"
        app:tabTextColor="@android:color/white"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMaxWidth="0dp"
        app:tabGravity="fill"
        app:tabMode="fixed">

</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/main_TabPager"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/appBar"> . 
</android.support.v4.view.ViewPager>
</RelativeLayout>

0 个答案:

没有答案