Java tutorial
//package com.java2s; //License from project: Apache License import android.app.NotificationManager; import android.content.Context; import android.util.Log; public class Main { private static final String TAG = "NotifUtils"; public static void dismissNotification(final Context context, int notificationId) { Log.d(TAG, "dismissNotification notificationID=" + notificationId); NotificationManager notifManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); notifManager.cancel(notificationId); } }