Add styles for your Tablayout in styles.xml
<style name="TabTextAppearance" parent="TextAppearance.Design.Tab">
<item name="textAllCaps">false</item>
</style>
then add that attribute as:
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
app:tabTextAppearance="@style/TabTextAppearance"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
I tested it. It'll work.
Use [Design Support Library][1] > Tabs
Add styles for your Tablayout in styles.xml
<style name="TabTextAppearance" parent="TextAppearance.Design.Tab">
<item name="textAllCaps">false</item>
</style>
then add that attribute as:
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
app:tabTextAppearance="@style/TabTextAppearance"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
I tested it. It'll work.
Thanks
[1]: http://android-developers.blogspot.com/2015/05/android-design-support-library.html