Add a line for the layout of the tab
app:tabMode="scrollable"
into your xml file for example
<android.support.design.widget.TabLayout android:id="@+id/tabs" android:layout_width="wrap_content" android:layout_height="wrap_content" app:tabMode="scrollable" app:tabTextColor="@color/colorWhite" app:tabSelectedTextColor="@color/colorSecondary" android:background="@color/colorPrimary" app:tabIndicatorColor="@color/colorSecondary" app:tabIndicatorHeight="5dp"/> </android.support.design.widget.AppBarLayout>
source share