Checking for other AlertDialogs in an Activity?
开发者_JAVA技巧How do I check whether there are any AlertDialog
s on the screen programmatically?
You could use myAlertDialog.isShowing();
to get a boolean of if it is showing and then do something with that information. Not exactly what you were looking for but maybe a long, convoluted work around...?
AFAIK, This can't be done in Android.
精彩评论