Shortly, I want to make option menu text in lower case, for example, save
, not SAVE
.
My app use toolbar in the latest appcompact library. I tried many ways but don't work at all.
There are some related questions but don't work for me:
Android ActionBar MenuItem LowerCase
How to change ActionBar Tab textStyle?
What I tried:
<style name="MyIDAppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/main</item>
<item name="colorPrimaryDark">@color/main</item>
<item name="actionBarTabTextStyle">@style/TextAppearance</item>
<item name="android:actionBarTabTextStyle">@style/TextAppearance</item>
</style>
<style name="TextAppearance" parent="TextAppearance.AppCompat.Widget.ActionBar.Menu">
<item name="textAllCaps">false</item>
<item name="android:textAllCaps">false</item>
</style>
Really annoyed that Google doesn't provide an option for developers to custom as they want.
Is there any suggestion?