in android is it possible to restrict edittext in order to reject and show an alert if some words are entered? For example I need to exclude from the edittext input the following words and numerc sequences: "123456", "0000", "administrator", "black" etc. Someone can help me please?
I used the following code to check and show alert when edittext is blank
if (TextUtils.isEmpty(name)) {
editTextName.setError("Please enter name");
editTextName.requestFocus();
return;
}
but I don't know how to check if was entered restricted words.
Thanks Andrew