android - EditText 每隔4个字符自动插入一个空格
怪我咯
怪我咯 2017-04-17 17:34:15
0
1
586

EditText输入一个号码,我希望每隔4个字符自动插入一个空格,然后我用了下面的方法

 public void onTextChanged(CharSequence s, int start, int before, int count) {

            if (count == 1||count==-1) {
                int mlength = s.toString().length();
                if ((mlength - 4) % 5 == 0) {
                    mTextToken.setText(s + " ");
                    mTextToken.setSelection(mTextToken.getText().toString().length());
                }
            }
        }

上面的代码可以实现每隔4个自动插入空格,但是我在删除空格的时候再输入字符的时候,空格不会再次被插入,于是我做了下面的修改

      public void onTextChanged(CharSequence s, int start, int before, int count) {


            int length = s.toString().length();
            if ((length - 4) % 5 == 0) {
                mTextToken.setText(s + " ");
                mTextToken.setSelection(mTextToken.getText().toString().length());
            }
            if (count == 1||count==-1) {
                int mlength = s.toString().length();
                if ((mlength - 4) % 5 == 0) {
                    mTextToken.setText(s + " ");
                    mTextToken.setSelection(mTextToken.getText().toString().length());
                }
            }
        }

这样删除到空格的时候如果空格被删除,那么会被立即添加上,这也造成空格前面的字符我无法删除,如果将光标移动到空格前的字符删除的话,s.length改变,又会插入新的空格,然后空格又无法删除,求解决办法

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(1)
Ty80

Remove the string spaces when deleting, calculate the length modulo 4, and then reinsert the spaces

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template