Skip to content

Instantly share code, notes, and snippets.

@antew
Created February 10, 2013 06:18
Show Gist options
  • Save antew/4748602 to your computer and use it in GitHub Desktop.
Save antew/4748602 to your computer and use it in GitHub Desktop.
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
if (activity instanceof LogoutDialogListener) {
listener = (LogoutDialogListener) activity;
} else {
throw new RuntimeException("The Activity must " +
"implement the LogoutDialogListener interface!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment