You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when you call show() a Dialog object is returned, so you can call isShowing() to check if the dialog is still visible. If it returns false, then it is cancelled.
Example: Dialog dialog = new Lovely*Dialog(context) ... . show(); if (dialog.isShowing){ dialog.dismiss() }else{ // It is already cancelled }
How to check if i cancel a dialog ?
The text was updated successfully, but these errors were encountered: