Skip to content

Instantly share code, notes, and snippets.

@antew
Created February 17, 2013 16:27
Show Gist options
  • Save antew/4972088 to your computer and use it in GitHub Desktop.
Save antew/4972088 to your computer and use it in GitHub Desktop.
/**
* Interface for Activities to implement to receive the result (the
* username and password in this case)
*
*/
public interface LoginDialogListener {
void onFinishLoginDialog(String username, String password);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment