I have a simple form in my Android app that I am using Android Saripaar to validate, one of the fields is an email address and according to the first example in the docs it should look something like this:
@NotEmpty
@Email
private EditText emailEditText;
However I would like it to be an optional field so I omitted the @NotEmpty
annotation:
@Email
private EditText emailEditText;
But when I leave it empty it understandably marks it as an invalid email address. Is it possible to have this field be optional without writing a custom rule?
Since we needed an optional email field for a project I went ahead and made a rule/annotation combination according to this answer. Referred to Saripaar docs for Rules and Annotations.
OptionalEmailRule.java
OptionalEmail.Java
Inside Validation Activity
Register the Annotation
Annotate the field