I would like to know if dialogs go to stack, as Activities go.. Because I have now a dialog "A", and I can click on a button that opens a new dialog "B".. But if I close the dialog "B", there is no longer the dialog "A". And I dont want to create a new Dialog "A" I want to continue as the way I leave it..
The close button of "B" does nothing.. it has a null onClickListener:
new AlertDialog.Builder(activity).setNegativeButton("Exit", null).show();
Can someone help me? Thanks in advance ;)