I\'ve an application that you can show and close several Dialogs with:
showDialog(...) removeDialog(...)
I play a little bit with the applicati
Have you implemented OnCreateDialog as presented here? When you call showDialog(4) for the first time, OnCreateDialog(4) will be called and you need to create the dialog and return it from this method.