Intercept popup notifications android
Is an API availa开发者_Python百科ble in android that would allow the interception/cancelling/redirecting of pop-up modal notifications?
Thanks for any help.
Short answer. No. You only have control over the modal dialog boxes that are generated within your own application.
you could try overriding the activitys onPrepareDialog, which passes in the dialog, then use dialog.dismiss() or dialog.cancel() to cancel it.
精彩评论