I'm managing dialogs by showDialog
/dismissDialog
/removeDialog
.
I want to:
Display several dialogs in kind of a stack:
a) First dialog is shown using showDialog(DIALOG_TYPE)
b) Next dialogs are shown on top of the existing dialog
Now I'm only able to display first dialog using showDialog
and then next dialogs are ignored.
Display last dialog:
a) First dialog is shown using showDialog(DIALOG_TYPE)
b) Application checks if dialog is displayed, closes dialog (if it's displayed) and opens a new dialog.
Is there any possibility to achieve one of the above solutions?