public class MyNotificationService extends NotificationListenerService {
private String TAG = MyNotificationService.class.getName();
@Override
public void onNotificationPosted(StatusBarNotification sbn) {
Log.d(TAG, "onNotificationPosted: ");
}
@Override
public void onNotificationRemoved(StatusBarNotification sbn) {
Log.d(TAG, "onNotificationRemoved: ");
Intent intent = new Intent(this, BackgroundService.class);
startService(intent);
}
}