Android - dismissDialog does not dismiss the dialog

前端 未结 8 1651
悲哀的现实
悲哀的现实 2020-12-08 01:49

I am using the showDialog() and dismissDialog() to show progress dialogs in my app. Moved from creating the dialog and calling show()

8条回答
  •  轮回少年
    2020-12-08 02:15

    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.

提交回复
热议问题