Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

actionBarSherlock subtitle textSize

I'm using ActionBarSherlock subtitles and trying to change the subtitle textsize using styles, but it seems that doesn't work. I'm not that familiar with themes, so.. How can I change that??

Thanks in advance

like image 665
alexandrenofre Avatar asked May 26 '26 01:05

alexandrenofre


1 Answers

<style name="Theme.Styled" parent="Theme.Sherlock">
    <item name="actionBarStyle">@style/Widget.Styled.ActionBar</item>
    <item name="android:actionBarStyle">@style/Widget.Styled.ActionBar</item>
</style>

<style name="Widget.Styled.ActionBar" parent="Widget.Sherlock.ActionBar.Solid">
    <item name="subtitleTextStyle">@style/TextAppearance.Sherlock.Widget.Styled.ActionBar.Subtitle</item>
    <item name="android:subtitleTextStyle">@style/TextAppearance.Sherlock.Widget.Styled.ActionBar.Subtitle</item>
</style>

<style name="TextAppearance.Sherlock.Widget.Styled.ActionBar.Subtitle" parent="Widget">
    <item name="android:textSize">18sp</item>
</style>
like image 90
Matthias Robbers Avatar answered May 27 '26 14:05

Matthias Robbers



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!