我正在玩Action Bar Sherlock提供的“Styled”样本。
我在原始的三个标签中添加了几个标签并更改了名称。但现在它看起来很糟糕,因为标签标题太大而无法显示所以所有内容都在狭窄的空间中滚动。是否可以减小文字大小?
答案 0 :(得分:4)
您只需覆盖默认的标签文字样式:
<style
name="MyActionBarTabTextStyle"
parent="Widget.Sherlock.ActionBar.TabText">
<item name="android:textSize">12sp</item>
</style>
请记住在你的主题中引用它两次:
<item name="actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>
<item name="android:actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>