How can I make the android keyboard have two types, in case I wanted numbers and letters. I tried using android:inputType
, but it did not work. Is there a way to resolve this?
Thank you.
RESOLVED
Looking further into the problem, I realized that the problem was not in the type of keyboard, but in the input mask, everything that was typed, in the mask class he called the setText () doing with the keyboard back to the default, then instead of setText () , I used the following:
ediText.getText().clear();
ediText.append(mascara.toUpperCase());
Thank you all.