|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectandroid.telephony.PhoneNumberFormattingTextWatcher
public class PhoneNumberFormattingTextWatcher
Watches a TextView and if a phone number is entered will format it using
PhoneNumberUtils.formatNumber(Editable, int). The formatting is based on
the current system locale when this object is created and future locale changes
may not take effect on this instance.
| Constructor Summary | |
|---|---|
PhoneNumberFormattingTextWatcher()
|
|
| Method Summary | |
|---|---|
void |
afterTextChanged(Editable text)
This method is called to notify you that, somewhere within s, the text has been changed. |
void |
beforeTextChanged(CharSequence s,
int start,
int count,
int after)
This method is called to notify you that, within s,
the count characters beginning at start
are about to be replaced by new text with length after. |
void |
onTextChanged(CharSequence s,
int start,
int before,
int count)
This method is called to notify you that, within s,
the count characters beginning at start
have just replaced old text that had length before. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public PhoneNumberFormattingTextWatcher()
| Method Detail |
|---|
public void afterTextChanged(Editable text)
TextWatchers, the text has been changed.
It is legitimate to make further changes to s from
this callback, but be careful not to get yourself into an infinite
loop, because any changes you make will cause this method to be
called again recursively.
(You are not told where the change took place because other
afterTextChanged() methods may already have made other changes
and invalidated the offsets. But if you need to know here,
you can use Spannable.setSpan(java.lang.Object, int, int, int) in TextWatcher.onTextChanged(java.lang.CharSequence, int, int, int)
to mark your place and then look up from here where the span
ended up.
afterTextChanged in interface TextWatcher
public void beforeTextChanged(CharSequence s,
int start,
int count,
int after)
TextWatchers,
the count characters beginning at start
are about to be replaced by new text with length after.
It is an error to attempt to make changes to s from
this callback.
beforeTextChanged in interface TextWatcher
public void onTextChanged(CharSequence s,
int start,
int before,
int count)
TextWatchers,
the count characters beginning at start
have just replaced old text that had length before.
It is an error to attempt to make changes to s from
this callback.
onTextChanged in interface TextWatcher
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||