Android - dismissDialog does not dismiss the dialog

前端 未结 8 1662
悲哀的现实
悲哀的现实 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:04

    The best solution for me seems to use removeDialog(id) instead of dismissDialog(); Less re-usage this way, but safer (doesn't throw anything) and no problems when changing orientation.

提交回复
热议问题