AlertDialog setOnDismissListener not working

前端 未结 6 1378
孤独总比滥情好
孤独总比滥情好 2021-02-19 11:44

My activity opens a dialog. When it closes I need the function ReloadTable() to be executed. So I am trying to use setOnDismissListener but its not get

6条回答
  •  名媛妹妹
    2021-02-19 12:24

    public class MyActivity extends Activity implements DialogInterface.OnCancelListener{
        @Override
        public void onCreate(Bundle state) {
           .....
           alertDialog.setOnCancelListener(this);
           alertDialog.show();
        }
        @Override
        public void onCancel(DialogInterface dialog) {
            dialog.dismiss();
            .....
        }
    }
    

提交回复
热议问题