Notification是显示在手机状态栏的消息--手机状态栏位于手机屏幕的最上方,Notification所代表的是一种具有全局效果的通知,程序一般通过NotificationManager服务来发送Notification。
使用Notification发送Notification通过以下步骤:
1.调用getSystemService(NOTIFICATION_SERVICE)方法获取系统的NotificationManager服务。
2.通过构造器创建一个Notification对象。
3.为Notification设置各种属性。
4.通过NotificationManager发送Notification。