Android - dismissDialog does not dismiss the dialog

前端 未结 8 1650
悲哀的现实
悲哀的现实 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 01:56

    After searching through all kinds of forums, i just did the following:

    I call the showDialog(MyDialogID) AND dismissDialog(MyDialogId) out of the handleMessage(myMessage) Method from my Handler.

    Before that i called showDialog in my onCreate()-Method and tried to dismiss the dialog in handle-Message. Why this solved the problem, i cant tell.

提交回复
热议问题