TextWatcher中的参数
Posted ttdevs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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中的参数的主要内容,如果未能解决你的问题,请参考以下文章
带有TextWatcher和LiveData的EditText中的光标位置?
Edittext textwatcher触发listview中的所有editexts