/**
  * Determines whether a notification is showing progress.
  *
  * @see NotificationService#isProgressStyle(int)
  */
 public boolean isProgressStyle(int notificationID) {
   final NotificationService service = mService;
   return service != null && service.isProgressStyle(notificationID);
 }