I want to make MenuItem title with lower case in the Toolbar.
my menu.xml
<item
android:id="@+id/action_done"
app:showAsAction="always"
android:title="Done"/>
On the Toolbar it shows as "DONE" but I want that it show it as "Done". I tried to solve this case by Using textAllCaps="false" but I could not find any proper parent class to apply style for "actionMenuTextAppearance".
What would be the right solution, I need a guidance here, Thank you.