I have two EditTexts and I am applying validations on them. If the validations fail, I want to show all the error messages at once. At a time, I'm getting only one error message which is fixed to the bottom EditText
field. How to show all the EditText
error messages at once??
I am using the following code:
if(uname.matches(""))
username.setError("Email is required");
if(pwd.matches(""))
password.setError("Password is required");
You have to setError(null) in else condition.