Java tutorial
//package com.java2s; //License from project: Apache License import android.app.NotificationManager; import android.content.Context; import android.content.ContextWrapper; public class Main { /** * Get the notification manager service. * * @param context * @return {@link NotificationManager} */ public static NotificationManager getManager(final ContextWrapper context) { return (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); } }