Getting character count of EditText

2019-02-16 22:09发布

I'm trying to get a character count of an EditText. I've looked into different properties of the EditText and TextView classes, but there doesn't seem to be a function that returns the amount of characters. I have tried to use the TextWatcher, but that is not ideal since sometimes I load a saved message into the EditText from the preferences, and TextWatcher does not count characters not typed right then.

Any help would be great!

Cheers!

2条回答
Deceive 欺骗
2楼-- · 2019-02-16 22:40
EditText edittext;
private final TextWatcher mTextEditorWatcher = new TextWatcher() {

        public void beforeTextChanged(CharSequence s, int start, int count, int after) {

        }

        public void onTextChanged(CharSequence s, int start, int before, int count) {
           //This sets a textview to the current length
           textview.setText(String.valueOf(s.length());
        }

        public void afterTextChanged(Editable s) {
        }
};
 editText.addTextChangedListener(mTextEditorWatcher);
查看更多
够拽才男人
3楼-- · 2019-02-16 22:53

Just grab the text in the EditText as a string and check its length:

int length = editText.getText().length();
查看更多
登录 后发表回答