Android - dismissDialog does not dismiss the dialog

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

    I was experimenting the same issue. I was creating an AlertDialog and a ProgressDialog inside the onCreateDialog() callback and showing them from the onCreate(). Creating these dialogs directly in onCreate (without using onCreateDialog()) and dismissing them in onPause() worked for me! Based on https://stackoverflow.com/a/5693467/955619

提交回复
热议问题