In my app, the user has to enter a phone number in an EditText field using the following format:
1(515)555-5555
I don't want the user to type "(", ")", or "-" while entering the number; I want these characters to be added automatically.
For example, suppose the user typed 1 -- the parenthesis after "1" should be added automatically, so that "1(" would be displayed. And I would like to have similar functionality while deleting.
I have tried to set text in the afterTextChanged method of onTextWatcher interface, but it is not working; instead it's causing an error. Any help will be greatly appreciated.
afterTextChangedand the log from the error. Without those, it's tough to know for sure what the problem is (though I'll take a guess anyway). – Mike Feb 23 '11 at 5:10