MaskFormatter
MaskFormatter copied to clipboard
An Android Library to format Strings usings masks. Can be used with TextWatcher.
when deleting / editing a character in the middle of the masked text, moves the cursor to the end
how can I add a listener in a editText to watch his size this is my code ``` SimpleMaskFormatter simpleMaskFormatterCelular = new SimpleMaskFormatter("(NN)NNNNN-NNNN"); SimpleMaskFormatter simpleMaskFormatterTelefone = new SimpleMaskFormatter("(NN)NNNN-NNNN"); MaskTextWatcher maskTextWatcherTelefoneMaeCel...
N - for numbers. L - for letters. L - for numbers and letters. l - for lowercase letters. U - for uppedcase letters. I think you mean "A -...
Could I set an InputType by position? I've this mask: ``` SimpleMaskFormatter smf = new SimpleMaskFormatter("UUU-NNNN"); ``` In Brazil this is our Mask for car plates, but the keyboard needs...