码迷,mamicode.com
首页 > 移动开发 > 详细

android学习笔记---发送状态栏通知

时间:2015-08-13 01:08:46      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

发送消息的代码如下:    
//获取通知管理器    
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);    
    int icon = android.R.drawable.stat_notify_chat;    
    long when = System.currentTimeMillis();    
    //新建一个通知,指定其图标和标题    
Notification notification = new Notification(icon, null, when);//第一个参数为图标,第二个参数为标题,第三个为通知时间    
notification.defaults = Notification.DEFAULT_SOUND;//发出默认声音    
Intent openintent = new Intent(this, OtherActivity.class);    
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, openintent, 0);//当点击消息时就会向系统发送openintent意图    
notification.setLatestEventInfo(this, “标题”, “我是内容", contentIntent);    
    mNotificationManager.notify(0, notification);//第一个参数为自定义的通知唯一标识    

 

摘自Lhttp://www.tuicool.com/articles/MjuUzi

android学习笔记---发送状态栏通知

标签:

原文地址:http://www.cnblogs.com/haoliansheng/p/4725943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!