我如何在 edtitext 中的每次更改之后添加诸如此破折号“-”之类的字符,例如,如果用户输入 A,那么 edittext 中的文本将为 A-,那么用户将完成并输入 Char B,那么 edittext 将为 AB 如何执行这个?谢谢
name = (EditText)findViewById(R.id.editText1);
name.addTextChangedListener(new TextWatcher(){
public void afterTextChanged(Editable s) {
name.setText("-");
}
public void beforeTextChanged(CharSequence s, int start, int count, int after){}
public void onTextChanged(CharSequence s, int start, int before, int count){
}