android.text
public
interface
android.text.SpanWatcher
When an object of this type is attached to a Spannable, its methods
will be called to notify it that other markup objects have been
added, changed, or removed.
Known Indirect Subclasses
| MultiTapInputMethod |
This is the standard input method for alphabetic input on 12-key
keyboards. |
Summary
Public Methods
| |
|
|
|
void |
onSpanAdded(Spannable text, Object what, int start, int end) |
| |
|
|
|
void |
onSpanChanged(Spannable text, Object what, int ostart, int oend, int nstart, int nend) |
| |
|
|
|
void |
onSpanRemoved(Spannable text, Object what, int start, int end) |
Details
Public Methods
public
void
onSpanAdded(Spannable text, Object what, int start, int end)
This method is called to notify you that the specified object
has been attached to the specified range of the text.
public
void
onSpanChanged(Spannable text, Object what, int ostart, int oend, int nstart, int nend)
This method is called to notify you that the specified object
has been relocated from the range ostart…oend
to the new range nstart…nend of the text.
public
void
onSpanRemoved(Spannable text, Object what, int start, int end)
This method is called to notify you that the specified object
has been detached from the specified range of the text.