NotificationManager和Notification的使用总结

上传人:飞*** 文档编号:44888452 上传时间:2018-06-14 格式:DOC 页数:3 大小:29KB
返回 下载 相关 举报
NotificationManager和Notification的使用总结_第1页
第1页 / 共3页
NotificationManager和Notification的使用总结_第2页
第2页 / 共3页
NotificationManager和Notification的使用总结_第3页
第3页 / 共3页
亲,该文档总共3页,全部预览完了,如果喜欢就下载吧!
资源描述

《NotificationManager和Notification的使用总结》由会员分享,可在线阅读,更多相关《NotificationManager和Notification的使用总结(3页珍藏版)》请在金锄头文库上搜索。

1、这几天一直在修改 twigee 的源代码,其中一个要加入的功能是常驻 Notification 栏,以前写 的时候只能出现 在“通知”这一组中,想把它放在“正在运行”组中却不知道怎么放,查了下 官方文档,找到了方法,在 notification 的 flags 字段中加一下 “FLAG_ONGOING_EVENT” 就可以了。同时我也把 Notification 的使用方法给总结了一下。详见下文:(1)、使用系统定义的、使用系统定义的 Notification以下是使用示例代码:/创建一个 NotificationManager 的引用 String ns = Context.NOTIFICA

2、TION_SERVICE; NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns); /定义 Notification 的各种属性 int icon = R.drawable.icon; /通知图标 CharSequence tickerText = “Hello“; /状态栏显示的通知文本提示 long when = System.currentTimeMillis(); /通知产生的时间,会在通知信息里显示 /用上面的属性初始化 Nofification Notificatio

3、n notification = new Notification(icon,tickerText,when); /* * 添加声音 * notification.defaults |=Notification.DEFAULT_SOUND; * 或者使用以下几种方式 * notification.sound = Uri.parse(“file:/sdcard/notification/ringer.mp3“); * notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, “6“); * 如果想要让声

4、音持续重复直到用户对通知做出反应,则可以在 notification 的 flags 字段增 加“FLAG_INSISTENT“ * 如果 notification 的 defaults 字段包括了“DEFAULT_SOUND“属性,则这个属性将覆盖 sound 字段中定义的声音 */ /* * 添加振动 * notification.defaults |= Notification.DEFAULT_VIBRATE; * 或者可以定义自己的振动模式: * long vibrate = 0,100,200,300; /0毫秒后开始振动,振动100毫秒后停止,再过200毫秒后 再次振动300毫秒

5、* notification.vibrate = vibrate; * long 数组可以定义成想要的任何长度 * 如果 notification 的 defaults 字段包括了“DEFAULT_VIBRATE“,则这个属性将覆盖 vibrate 字段中定义的振动 */ /* * 添加 LED 灯提醒 * notification.defaults |= Notification.DEFAULT_LIGHTS; * 或者可以自己的 LED 提醒模式: * notification.ledARGB = 0xff00ff00;* notification.ledOnMS = 300; /亮的时间

6、 * notification.ledOffMS = 1000; /灭的时间 * notification.flags |= Notification.FLAG_SHOW_LIGHTS; */ /* * 更多的特征属性 * notification.flags |= FLAG_AUTO_CANCEL; /在通知栏上点击此通知后自动清除此通知 * notification.flags |= FLAG_INSISTENT; /重复发出声音,直到用户响应此通知 * notification.flags |= FLAG_ONGOING_EVENT; /将此通知放到通知栏的“Ongoing“即“正在 运

7、行“组中 * notification.flags |= FLAG_NO_CLEAR; /表明在点击了通知栏中的“清除通知“后,此通知不 清除, * /经常与 FLAG_ONGOING_EVENT 一起使用 * notification.number = 1; /number 字段表示此通知代表的当前事件数量,它将覆盖在状态栏 图标的顶部 * /如果要使用此字段,必须从1开始 * notification.iconLevel = ; / */ /设置通知的事件消息 Context context = getApplicationContext(); /上下文 CharSequence cont

8、entTitle = “My Notification“; /通知栏标题 CharSequence contentText = “Hello World!“; /通知栏内容 Intent notificationIntent = new Intent(this,Main.class); /点击该通知后要跳转的 Activity PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0); notification.setLatestEventInfo(context, contentT

9、itle, contentText, contentIntent); /把 Notification 传递给 NotificationManager mNotificationManager.notify(0,notification);如果想要更新一个通知,只需要在设置好 notification 之后,再次调用 setLatestEventInfo(), 然后重新发送一次通知即可,即再次调用 notify()。(2)、使用自定义的、使用自定义的 Notification要 创建一个自定义的 Notification,可以使用 RemoteViews。要定义自己的扩展消息,首先 要初始化一个

10、 RemoteViews 对象,然后 将它传递给 Notification 的 contentView 字段,再 把 PendingIntent 传递给 contentIntent 字段。以下示例代码 是完整步骤:/1、创建一个自定义的消息布局 view.xml/2、在程序代码中使用 RemoteViews 的方法来定义 image 和 text。然后把 RemoteViews 对象 传到 contentView 字段 RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view); contentView.s

11、etImageViewResource(R.id.image,R.drawable.icon); contentView.setTextViewText(R.id.text,”Hello,this message is in a custom expanded view”); notification.contentView = contentView; /3、为 Notification 的 contentIntent 字段定义一个 Intent(注意,使用自定义 View 不需要 setLatestEventInfo()方法) Intent notificationIntent = new

12、 Intent(this,Main.class); PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0); notification.contentIntent = contentIntent; /4、发送通知 mNotificationManager.notify(2,notification); /以下是全部示例代码以下是全部示例代码 /创建一个 NotificationManager 的引用 String ns = Context.NOTIFICATION_SERVICE;

13、 NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns); /定义 Notification 的各种属性 int icon = R.drawable.icon; /通知图标 CharSequence tickerText = “Hello“; /状态栏显示的通知文本提示 long when = System.currentTimeMillis(); /通知产生的时间,会在通知信息里显示 /用上面的属性初始化 Nofification Notification notificatio

14、n = new Notification(icon,tickerText,when); RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view); contentView.setImageViewResource(R.id.image, R.drawable.iconempty); contentView.setTextViewText(R.id.text, “Hello,this is JC“); notification.contentView = contentView; Intent notificationIntent = new Intent(this,Main.class); PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0); notification.contentIntent = contentIntent; /把 Notification 传递给 NotificationManager mNotificationManager.notify(0,notification);

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 行业资料 > 其它行业文档

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号