Skip to content

Instantly share code, notes, and snippets.

@tassioauad
Last active November 11, 2016 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tassioauad/8ebd692e7342c2503616342cbe178f8f to your computer and use it in GitHub Desktop.
Save tassioauad/8ebd692e7342c2503616342cbe178f8f to your computer and use it in GitHub Desktop.
DialogFragment/AlertDialog dismiss automatically on click button
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog alertDialog = new AlertDialog(getActivity());
// set more items...
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "OK", null);
return alertDialog;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment