how can i show an AlertDialog in my activity, when the notification is clicked in notification area.
plz help….
i’m using multiple status bar notifications each with unique IDS.
how can i show an AlertDialog in my activity, when the notification is clicked
Share
Put some data to signal that an
AlertDialogshould be shown into aPendingIntentand put this intoyourNotification.contentIntentof your notification. Display theAlertDialogfrom yourActivityin case it receives thisIntent.Have a look at the Notifications Doc.