Skip to content

Instantly share code, notes, and snippets.

@AliAzaz
Last active May 20, 2019 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliAzaz/0bed7433ef83b72e71d2e0d8d522a9b8 to your computer and use it in GitHub Desktop.
Save AliAzaz/0bed7433ef83b72e71d2e0d8d522a9b8 to your computer and use it in GitHub Desktop.
Newly adopted method for validation using EdittextPicker Library
//Empty edittext checking
if (!txtBoxReq.isEmptyTextBox())
return;
//Range edittext checking
if (!txtBoxRange.isRangeTextValidate())
return;
//Equal/Pattern edittext checking
if (!txtBoxDefault.isTextEqualToPattern())
return;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment