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

Android Notification使用及取消

时间:2014-11-27 12:41:30      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:android   style   io   color   使用   sp   on   div   cti   

//发送通知
NotificationManager manger = (NotificationManager) this.getSystemService(NOTIFICATION_SERVICE);
Notification noti = new Notification(R.drawable.icon,"电话录音",System.currentTimeMillis());
Intent it = new Intent();
it.setClass(this, MainActivity.class);//点击通知后要跳向的页面
PendingIntent pi = PendingIntent.getActivity(this, 0, it, 0);
noti.setLatestEventInfo(this, "电话录音", "正在监听...", pi);
noti.defaults = Notification.DEFAULT_ALL;//有4种
manger.notify(10, noti);// id=10
 
//取消
NotificationManager manger = (NotificationManager)this.getSystemService(NOTIFICATION_SERVICE);
manger.cancel(10);

Android Notification使用及取消

标签:android   style   io   color   使用   sp   on   div   cti   

原文地址:http://www.cnblogs.com/dongweiq/p/4125894.html

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