why default EditText for email isn’t validating an email Address?as EditText field is working for number input.i know that we can validate it by using java.util.regex.Matcher and java.util.regex.Pattern is there any default function as for number is?
inputtype=”textEmailAddress” is not working as inputType=”number” do work…
Editext field will not validate your email only by setting it’s input method to email type.
You need to validate it yourself.
Try this:
Android: are there any good solutions how to validate Editboxes
email validation android