I am creating an simple android application in that created a notification.
Now i want to remove the notification if the user doesn\'t response after the particular
What you need is a combination of Alarmmanager and notificationmanger.
Register the alarm manager that will call a service in 5 minutes and use NotificationManager.cancel in the service implementation.
Alarm Service Sample is here. I suppose you know to use Notification Manager.