码迷,mamicode.com
首页 > 其他好文 > 详细

notify 通知消息

时间:2016-10-19 19:35:43      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

1.声明一个manager  ,再声明一个notification

        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        Notification n = new Notification(R.mipmap.push_icon, str, System.currentTimeMillis());

 notification的参数:

技术分享

所以也可以单独设置如

n.icon=R.drawable.xxx

n.tickerText="xxx"

 

2.设置参数flag

FLAG_AUTO_CANCEL           该通知能被状态栏的清除按钮给清除掉

FLAG_NO_CLEAR                  该通知不能被状态栏的清除按钮给清除掉

 FLAG_ONGOING_EVENT      通知放置在正在运行

        n.flags |= Notification.FLAG_AUTO_CANCEL;

 

3.执行这个通知

        notificationManager.notify(0,n);

 

notification和PendingIntent联用即点击跳转 。

...to be continue

notify 通知消息

标签:

原文地址:http://www.cnblogs.com/lyxin/p/5978374.html

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