Java tutorial
//package com.java2s; import android.app.NotificationManager; import android.content.Context; public class Main { private static NotificationManager manager; public static NotificationManager getNotificationManager(Context context) { if (manager == null) { manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); } return manager; } }