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
ReloadTable()
setOnDismissListener
OK...I figured it out myself.
I had to implement DialogInterface.OnCancelListener and add the onCancel() method. It worked!
DialogInterface.OnCancelListener
onCancel()