Skip to content

Instantly share code, notes, and snippets.

@jhelmig
Last active January 2, 2016 01:29
Show Gist options
  • Select an option

  • Save jhelmig/8230886 to your computer and use it in GitHub Desktop.

Select an option

Save jhelmig/8230886 to your computer and use it in GitHub Desktop.
// 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