I have a registration form in my application which I am trying to validate. I\'m facing some problems with my validation while validating the phone number and email fields.<
Use Pattern package in Android to match the input validation for email and phone
Do like
android.util.Patterns.EMAIL_ADDRESS.matcher(input).matches(); android.util.Patterns.PHONE.matcher(input).matches();