我为EditText视图编写了一个TextWatcher。 方法
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
String str = mTxtView.getText().toString();
if ((str.length() == 2 && len < str.length())) {
mTxtView.append("/");
}
}
什么都没发生;
更改
mTxtView.append("/");
带
mTxtView.setText(str+"/");
不适合我,因为光标跳转到EditText中的第1个位置。