本文主要是介绍TextWatcher中的参数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
TextWatcher中的参数
- beforeTextChanged
@Override
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.
字符串s中,从start
开始的count
个字符 将会
被长度为after
的字符串替换
- onTextChanged
@Override
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.
字符串s中,从start
开始的count
个字符 替换了
长度为before
的字符串
这篇关于TextWatcher中的参数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!