在EditText中附加斜杠

时间:2016-08-11 15:03:27

标签: android string android-edittext append

我为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个位置。

0 个答案:

没有答案