Class Overview
Watches a TextView and if a phone number is entered will format it using
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.
Summary
Public Methods |
synchronized
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 .
|
[Expand]
Inherited Methods |
From class java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Is called before the object's memory is being reclaimed by the VM.
|
final
Class<? extends Object>
|
getClass()
Returns the unique instance of Class which represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
|
From interface android.text.TextWatcher
abstract
void
|
afterTextChanged(Editable s)
This method is called to notify you that, somewhere within
s , the text has been changed.
|
abstract
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 .
|
abstract
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 .
|
|
Public Constructors
public
PhoneNumberFormattingTextWatcher
()
Public Methods
public
synchronized
void
afterTextChanged
(Editable text)
This method is called to notify you that, somewhere within
s
, 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 setSpan(Object, int, int, int) in onTextChanged(CharSequence, int, int, int)
to mark your place and then look up from here where the span
ended up.
public
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
.
It is an error to attempt to make changes to s
from
this callback.
public
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
.
It is an error to attempt to make changes to s
from
this callback.