Can you fire an event when Android Dialog is dismissed?

前端 未结 6 1233
一整个雨季
一整个雨季 2020-12-11 00:33

Say I have a created a dialog in my Android app like so:

private static ProgressDialog dialog;
dialog = ProgressDialog.show(MainActivity.this, \"\", \"Downlo         


        
6条回答
  •  半阙折子戏
    2020-12-11 00:54

    Use an OnDismissListener.

    There is a setOnDismissListener(...) method in the class Dialog

提交回复
热议问题