PagerTabStrip with all captial letters

63 views Asked by At

I have a PagerTabStrip in my app and I put in Strings to the Tab,

titles = new String[]{
            "Tab1",
            "Tab2",
            "Tab3"

};

so suppose only "T" here is capital, but I get all capital letters.

I also tried to fix this by adding textAllCap to be false through the style in xml:

 <style name="viewPagerTitleStrip">
    <item name="android:textColor">@color/LightGrey2</item>
    <item name="android:textSize">20sp</item>
    <item name="android:textAllCaps">false</item>
 </style>

and then apply it in the layout xml:

<android.support.v4.view.ViewPager
    android:id="@+id/mainFragContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <android.support.v4.view.PagerTabStrip
        android:id="@+id/titleStrip"
        style="@style/viewPagerTitleStrip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorPrimary"
        android:paddingTop="10dp"
        app:tabIndicatorColor="@color/LightGrey"
        />

</android.support.v4.view.ViewPager>

But they still appear to be all cap, i.e. "TAB1" , "TAB2", "TAB3"

Can anyone help?

1

There are 1 answers

1
Daniel Wijono On

try this

app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"