mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
// This is who should be launched if the user selects our persistent
// notification.
Intent intent = new Intent(this, LocalServiceController.class);
// Display a notification about us starting.
mNM.notifyWithText(R.string.remote_service_started,
getText(R.string.remote_service_started),
NotificationManager.LENGTH_SHORT,
new Notification(
R.drawable.stat_sample,
getText(R.string.remote_service_label),
intent,
null,
null));