1

It's working fine for more than 5 tabs but when 3 tabs looking not so good.
This is my TabLayout XML Code:

 <android.support.design.widget.TabLayout
            android:gravity="center"
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/search_bar"
            android:fillViewport="false"
            app:tabGravity="center"
            app:tabIndicatorColor="@color/ThemeColor"
            app:tabIndicatorHeight="6dp"
            app:tabMode="scrollable"
            android:paddingBottom="2dp"
            android:background="@drawable/bottom_dotted_border"
            app:tabSelectedTextColor="@color/ThemeColor"
            app:tabTextAppearance="@style/TabLayoutTextStyle"
            app:tabTextColor="@color/White" />

problamatic tab desire tab

2 Answers2

1

just change this app:tabMode="scrollable" to app:tabMode="fixed" in youor tab layout

1. app:tabMode="fixed : the tabs are fixed in your tab layout (its not good for when your tabs have long tabtitles)

2. tabMode:scrollable - you can scroll your tabs horizontally when your tabs have long tabtitles

sample code

<android.support.design.widget.TabLayout
        android:gravity="center"
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/search_bar"
        android:fillViewport="false"
        app:tabGravity="fill"
        app:tabMode="fixed"
        app:tabIndicatorColor="@color/ThemeColor"
        app:tabIndicatorHeight="6dp"
        android:paddingBottom="2dp"
        android:background="@drawable/bottom_dotted_border"
        app:tabSelectedTextColor="@color/ThemeColor"
        app:tabTextAppearance="@style/TabLayoutTextStyle"
        app:tabTextColor="@color/White" />
Community
  • 1
  • 1
AskNilesh
  • 67,701
  • 16
  • 123
  • 163
0

If you use tabMode:scrollable just fix the android:layout_width="match_parent" to "wrap_content"

Muhammad Dyas Yaskur
  • 6,914
  • 10
  • 48
  • 73