How to Change Text Color of tab Layout?

SadeQ digitALLife picture SadeQ digitALLife · Dec 3, 2017 · Viewed 25.6k times · Source

I have this code for change color of text of tab layout, but it does not work at all!

app:tabTextColor does not work, and it cant change color to white.

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        app:tabIndicatorColor="@color/blue"
        app:tabIndicatorHeight="5dp"
        app:tabTextColor="@color/white" />

Answer

AGM Tazim picture AGM Tazim · Dec 3, 2017

Try with it -

<android.support.design.widget.TabLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMode="fixed"
        app:tabGravity="fill"
        android:background="@color/colorWhite"
        app:tabTextColor="@color/colorBlack"
        app:tabSelectedTextColor="@color/colorPrimary"/>