Skip to content

Instantly share code, notes, and snippets.

@izmajlowiczl
Created April 24, 2013 06:36
Show Gist options
  • Save izmajlowiczl/5450071 to your computer and use it in GitHub Desktop.
Save izmajlowiczl/5450071 to your computer and use it in GitHub Desktop.
[Android] Simple Email Validation
public boolean isValid(final CharSequence email) {
return android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment