Here you can find the source of removeNotification(Context context)
public static void removeNotification(Context context)
//package com.java2s; import android.app.*; import android.content.Context; public class Main { private static boolean alarmIsRunning = false; private static double currentDistance = -1; private static boolean alarmWentOff = false; public static void removeNotification(Context context) { NotificationManager notificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); notificationManager.cancelAll(); alarmIsRunning = false;//w ww .j av a2s . c o m alarmWentOff = false; currentDistance = -1; } }