Possible Duplicate:
How to add a button into notification?
Can we put buttons in notification and how to listen to the onclick event?
Possible Duplicate:
How to add a button into notification?
Can we put buttons in notification and how to listen to the onclick event?
1) You can, 2) You can't. It is impossible to listen on events. Instead that, launch an Intent from notification.
Basically, notifications are itself clickable. The main goal of every notification is to notify your user, that your application wants him to pay attention to it. So the best scenario is to redirect the user to your application on the notification's click and to proceed inside your app. Hope this helps.