Android studio name validation
I'm comming with a little question here. I need to do something to validate the a name in the registration form, until now I did this : if(TextUtils.isEmpty(textFullName) ) and this else if(!textFullName.matches("[a-zA-Z ]+")) but those are for empty and…