Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1.     public boolean fieldsEmpty() {
  2.         if (userText.getText() == null || passwordText.getText() ==null) {
  3.             Log.d("fieldsEmpty", "true");
  4.             return true;
  5.         }
  6.         else {
  7.             Log.d("fieldsEmpty", "false");     
  8.             return false;
  9.         }
  10.     } //fieldsEmpty
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement