Guest User

Untitled

a guest
Aug 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. new AlertDialog.Builder(this)
  2. .setTitle(“Awesome")
  3. .setMessage("You've finished all the questions, do you want to start over?")
  4. .setPositiveButton("Restart", new DialogInterface.OnClickListener() {
  5. @Override
  6. public void onClick(DialogInterface dialog, int which) {
  7. startOver();
  8. }
  9. })
  10. .show();
Add Comment
Please, Sign In to add comment