Hi there,
Just need to know whether it is possible to disable all caps on dialog buttons. If so, how?
Thanks!
Nevermind got it to work. Used this method:
public void MakeDialogButtonsLowercase(MaterialDialog myDialog){
MDButton negative =myDialog.getActionButton(DialogAction.NEGATIVE);
MDButton positive =myDialog.getActionButton(DialogAction.POSITIVE);
negative.setAllCaps(false);
positive.setAllCaps(false);
}
This is what it works for me:
<style name="MyTheme">
...
<item name="md_button_casing">literal</item>
</style>