Last active
January 2, 2016 01:29
-
-
Save jhelmig/8230886 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This is the method that is called when the submit button is clicked | |
| public void verifyEmail(View view) { | |
| EditText emailEditText = (EditText) findViewById(R.id.email_address); | |
| String email = emailEditText.getText().toString(); | |
| // TODO, create the task to call the REST API | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment