Changing Actionbar Tab Text Size in AppCompact Theme

百般思念 提交于 2019-12-06 05:55:16

This works for me . I am able to change the text size and color. Try removing the actionBarWidgetTheme

<style name="Theme.Tabtheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">

    <item name="android:actionBarTabTextStyle">@style/ActionBarTabTextStyle.Tabtheme</item>
    <item name="actionBarTabTextStyle">@style/ActionBarTabTextStyle.Tabtheme</item>

</style>

<style name="ActionBarTabTextStyle.Tabtheme" parent="Widget.AppCompat.Base.ActionBar.TabText">
    <item name="android:textSize">18sp</item>
    <item name="android:textColor">@color/Red</item>
</style>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!