對(duì)于使用TextWatcher對(duì)輸入框進(jìn)行監(jiān)聽的一點(diǎn)使用心得:
beforeTextChanged(CharSequence charSequence, int start, int length, int newLength)
start
編輯起始index
length
編輯區(qū)選中的長度,默認(rèn)是0简僧,多選的時(shí)候才會(huì)改變此值
newlength
編輯區(qū)輸入字符的長度昭娩,在中文輸入詞組的時(shí)候會(huì)出現(xiàn)大于1的值
onTextChanged(CharSequence s, int start, int before, int count)
start
編輯起始index
before
改變前池户,編輯區(qū)選中的長度案腺,默認(rèn)是0,對(duì)應(yīng)上面的length
count
編輯區(qū)輸入字符的長度,對(duì)應(yīng)上面的newlength