How to cancel an alertdialog?
You should check out this link of the Android documentation: http://developer.android.com/guide/topics/ui/dialogs.html#DismissingADialog
There it is explained how can can cancel a Dialog.
You can receive dialog instance in DialogInterface onClick method.
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}