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