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
Just grab the text in the EditText as a string and check its length:
int length = editText.getText().length();