Assume you have the following constant value, a NotificationManager object named manager, and a Notification object named notification. Which of the following statements removes the notification? final int NOTIFICATION_ID = 999;

Assume you have the following constant value, a NotificationManager object named manager, and a Notification object named notification. Which of the following statements removes the notification?
final int NOTIFICATION_ID = 999;




Answer: manager.cancel(NOTIFICATION_ID);


Learn More :