发送通知的过程包含3步骤:
1.创建一个合适的通知
2.获得通知管理器访问权限
3.向通知管理器发送通知
创建通知时,需要确保拥有一下部分
1>要显示的图标
2>显示的标题
2>时间与显示的内容
在构建通知管理器对象,要求提供一个上下文Context.NOTIFICATION_SERVICE系统服务,用了通知管理起就可以,通过通知管理起调用notify方法发送通知
public void sendNotification(Content con,String mess){
//创建通知管理器对象
NotificationManager nm = (NotificationManager)con.getSystemService(Context.NOTIFICATION_SERVICE);
//发送通知,两个参数分别是通知唯一标示id,Notification对象
nm.notify(1,notification);
//创建Notification对象
Notification notification = new Notification("图标",mess,"时间");
//创建intent意图
Intent intent = new Intent("Intent.ACTION_VIEW");
intent.setData(Uri.parse("http://www.google.com"));
PendingIntent pIntent = new PendingIntent.getActivity(con,0,intent,0);
notification.setLatestEventInfo(con,"title","context",pi);
}