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.

link|improve this question

It would be really helpful to see your code for afterTextChanged and 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
feedback

2 Answers

up vote 3 down vote accepted

You're probably running into a problem because afterTextChanged is re-entrant, i.e. changes made to the text cause the method to be called again.

If that's the problem, one way way around is to keep an instance variable flag:

public class MyTextWatcher implements TextWatcher {
    private boolean isInAfterTextChanged;

    public synchronized void afterTextChanged(Editable text) {
       if (!isInAfterTextChanged) {
           isInAfterTextChanged = true;

           // TODO format code goes here

           isInAfterTextChanged = false;
       }
    }
}

As an alternative, you could just use PhoneNumberFormattingTextWatcher -- it doesn't do the formatting that you described, but then again you don't have to do much to use it.

link|improve this answer
thanks a lot mike ,after implementing ur suggestion its working fine. – Amit Kumar Mar 15 '11 at 14:15
feedback

This kind of reformatting can be very irritating if you are editing a non-international number to make it international format, and it starts "01.." As soon as you delete the "0" and type the "+" prior to entering the international prefix, the Google code leaps in and reformats your number in USA format. Grr !

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.