在EditText中计算字符更改了侦听器在我的项目中,我有一个EditText。我想计算中的字符数EditText,并在数字中显示该数字TextView。我写了以下代码,它工作正常。但是,我的问题是当我点击Backspace它计数时,但我需要减少数量。我怎么考虑Backspace?tv = (TextView)findViewById(R.id.charCounts);textMessage = (EditText)findViewById(R.id.textMessage);textMessage.addTextChangedListener(new TextWatcher(){
public void afterTextChanged(Editable s) {
i++;
tv.setText(String.valueOf(i) + " / " + String.valueOf(charCounts));
}
public void beforeTextChanged(CharSequence s, int start, int count, int after){}
public void onTextChanged(CharSequence s, int start, int before, int count){}});
- 3 回答
- 0 关注
- 349 浏览
添加回答
举报
0/150
提交
取消