* source : http://developer.android.com/reference/android/text/TextWatcher.html
Class Overview
When an object of a type is attached to an Editable, its methods will be called when the text is changed.
Summary
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This method is called to notify you that, somewhere within s , the text has been changed. | |||||||||||
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 . | |||||||||||
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 Methods
public abstract void afterTextChanged (Editable s)
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 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
. It is an error to attempt to make changes to s
from this callback.
public 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
. It is an error to attempt to make changes to s
from this callback.
'모바일 > 안드로이드' 카테고리의 다른 글
Android Supported Media Formats (0) | 2013.02.08 |
---|---|
[링크]AsyncTask and AsyncTaskLoader (1) | 2012.11.29 |
How to send email from your application (0) | 2011.08.09 |
Android SDK Quick Tip: Sending Pictures the Easy Way (0) | 2011.08.09 |
Debug Certificate expired (1) | 2011.07.06 |