Hello, I use the library Sherlockto achieve ActionBarTabsin Android, but there is some strange problem that the text displayed in Tabsis all caps. I do not want to make all the hats captive. How can I achieve this?
I tried this but it does not work
values-v14.xml
<style name="TariffPlansTheme" parent="Theme.Sherlock">
<item name="actionMenuTextAppearance">@style/MyMenuTextAppearance</item>
<item name="android:actionMenuTextAppearance">@style/MyMenuTextAppearance</item>
</style>
<style name="MyMenuTextAppearance" parent="TextAppearance.Sherlock.Widget.ActionBar.Menu">
<item name="android:textAllCaps">false</item>
</style>
AndroidManifest.xml
<activity
android:name="TariffPlansActivity"
android:label="@string/title_activity_tariff_plans"
android:screenOrientation="portrait"
android:theme="@style/TariffPlansTheme">
</activity>
Thanks in advance.
source
share