Getting character count of EditText

后端 未结 3 515
傲寒
傲寒 2021-01-11 11:50

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 th

3条回答
  •  臣服心动
    2021-01-11 12:29

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

    int length = editText.getText().length();
    

提交回复
热议问题