Skip to content

Instantly share code, notes, and snippets.

@jhelmig
Created January 3, 2014 01:35
Show Gist options
  • Select an option

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

Select an option

Save jhelmig/8230963 to your computer and use it in GitHub Desktop.
public void verifyEmail(View view) {
EditText emailEditText = (EditText) findViewById(R.id.email_address);
String email = emailEditText.getText().toString();
if( email != null && !email.isEmpty()) {
String urlString = apiURL + "LicenseInfo.RegisteredUser.UserID=" + strikeIronUserName + "&LicenseInfo.RegisteredUser.Password=" + strikeIronPassword + "&VerifyEmail.Email=" + email + "&VerifyEmail.Timeout=30";
new CallAPI().execute(urlString);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment