Android examples for Android OS:Notification
Get the NotificationManager for the device
//package com.java2s; import android.app.NotificationManager; import android.content.Context; public class Main { /**/*from w ww . j a v a2s . c o m*/ * Get the NotificationManager for the device * @param context The Context to use * @return The NotificationManager */ public static NotificationManager getNotificationManager(Context context) { return (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); } }