Tuesday, 17 June 2014

cancel or clear push notifications in android

public static void cancelPushNotification(Context ctx, int notificationType) {
NotificationManager notificationManager = (NotificationManager) ctx
.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.cancel(notificationType);
}

No comments:

Post a Comment