List of usage examples for android.service.notification StatusBarNotification toString
@Override
public String toString()
From source file:org.durka.hallmonitor.NotificationService.java
@Override public void onNotificationPosted(StatusBarNotification sbn) { Log.d(LOG_TAG + ".oNP", "notification posted: " + sbn.toString()); Intent mIntent = new Intent(CoreApp.DA_ACTION_NOTIFICATION_REFRESH); mLocalBroadcastManager.sendBroadcastSync(mIntent); }
From source file:org.durka.hallmonitor.NotificationService.java
@Override public void onNotificationRemoved(StatusBarNotification sbn) { Log.d(LOG_TAG + ".oNR", "notification removed: " + sbn.toString()); Intent mIntent = new Intent(CoreApp.DA_ACTION_NOTIFICATION_REFRESH); mLocalBroadcastManager.sendBroadcastSync(mIntent); }