android check if notification is visible/showing

https:‮ual.www//‬tturi.com
android check if notification is visible/showing
NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
StatusBarNotification[] notifications = mNotificationManager.getActiveNotifications();
for (StatusBarNotification notification : notifications) {

  if (notification.getId() == 100) {

  }
  
}
Created Time:2017-09-10 09:52:55  Author:lautturi