I have an editText that i want to control in length.
how can i avoid the user from entering a character which will lead the text to be longer than X ?
I have thought to use beforeTextChanged(CharSequence s, int start, int count,
int after) {
but then i'm not sure how to skip adding the character if i want.
The length is determined dynamically - getting this from the server side on activity start