///// 第一步:获取NotificationManager
NotificationManager nm = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
///// 第二步:定义Notification
Intent intent = new Intent(this, OtherActivity.class);
//PendingIntent是待执行的Intent
PendingIntent pi = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_CANCEL_CURRENT);
Notification notification = new Notification.Builder(this)
.setContentTitle("title")
.setContentText("text")
.setSmallIcon(R.drawable.ic_launcher).setContentIntent(pi)
.build();
notification.flags = Notification.FLAG_NO_CLEAR;
/////第三步:启动通知栏,第一个参数是一个通知的唯一标识
nm.notify(0, notification);
//关闭通知
//nm.cancel(0);
您可能感兴趣的文章:android notification 的总结分析Android中通知Notification使用实例(振动、灯光、声音)android使用NotificationListenerService监听通知栏消息Android 中Notification弹出通知实现代码Android 通知使用权(NotificationListenerService)的使用Android自定义Notification添加点击事件Android中Notification 提示对话框Android种使用Notification实现通知管理以及自定义通知栏实例(示例四)Android使用Notification在状态栏上显示通知Android开发之Notification手机状态栏通知用法实例分析