I am using the showDialog() and dismissDialog() to show progress dialogs in my app. Moved from creating the dialog and calling show()
showDialog()
dismissDialog()
show()
I've run into this when showing a dialog in the onCreate override of the Activity. Try moving the code that causes the dialog to be shown into the onPostCreate override instead. This seems to work for me.