Java tutorial
//package com.java2s; import android.app.NotificationManager; import android.content.Context; public class Main { public static void cancelNotification(Context ctx, int notifyId) { String ns = Context.NOTIFICATION_SERVICE; NotificationManager nMgr = (NotificationManager) ctx.getSystemService(ns); nMgr.cancel(notifyId); } }