Changing Actionbar Tab Text Size in AppCompact Theme

妖精的绣舞 提交于 2019-12-10 10:56:13

问题


I've search around and tried several ways to change the Actionbar Tab text style.

I would like the bigger text size for that "NOW SHOWING" text.

Here's my Theme.

  <style name="Theme.Tabtheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
    <item name="actionBarItemBackground">@drawable/selectable_background_tabtheme</item>
    <item name="popupMenuStyle">@style/PopupMenu.Tabtheme</item>
    <item name="dropDownListViewStyle">@style/DropDownListView.Tabtheme</item>
    <item name="actionBarTabStyle">@style/ActionBarTabStyle.Tabtheme</item>

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

    <item name="actionDropDownStyle">@style/DropDownNav.Tabtheme</item>
    <item name="actionBarStyle">@style/ActionBar.Solid.Tabtheme</item>
    <item name="actionModeBackground">@drawable/cab_background_top_tabtheme</item>
    <item name="actionModeSplitBackground">@drawable/cab_background_bottom_tabtheme</item>
    <item name="actionModeCloseButtonStyle">@style/ActionButton.CloseMode.Tabtheme</item>

    <!-- Light.DarkActionBar specific -->
    <item name="actionBarWidgetTheme">@style/Theme.Tabtheme.Widget</item>

  </style>

  <style name="ActionBarTabTextStyle.Tabtheme" parent="Widget.AppCompat.Base.ActionBar.TabText">
    <item name="android:textSize">18sp</item>
  </style>

What am I doing wrong ?


回答1:


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>


来源:https://stackoverflow.com/questions/23379122/changing-actionbar-tab-text-size-in-appcompact-theme

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!