发送Notification

Posted 红尘Dream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了发送Notification相关的知识,希望对你有一定的参考价值。

//1、获得通知管理者
NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

//2、创建Intent 对象
Intent intent = new Intent(this,OtherActivity.class);

//3、创建PendingIntent对象
PendingItent pend = PendingIntent.getactivity(act, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

//4、创建NotificationComPat 兼容对象

NotificationCompat.Builder compat = new Builder(act);

compat.setContentTitle("提示"); //设置标题
compat.setContentText("系统可以更新");//设置内容
compat.setSmallIcon(android.R.drawable.ic_dialog_alert);//设置图标
compat.setWhen(System.currentTimeMillis());//设置时间
compat.setTicker("你有新的消息");//第一次会在状态栏显示提示语
compat.setDefaults(Notification.DEFAULT_SOUND);//设置默认提示音
compat.setAutoCancel(true);//设置自动维护
compat.setContentIntent(pend); //设置要传递的意图

//5、通知管理
nm.notify(0,pend.build);

以上是关于发送Notification的主要内容,如果未能解决你的问题,请参考以下文章

本地能正常发送邮件 阿里云服务器端发送邮件提示已经成功了 但是发送不过来 显示 Failure sending mail.

把excel文件用outlook发送时,还要再打开outlook中点击“发送接受”按钮才能发送,能否直接从excel中发送

串口发送数据——字符串发送与十六进制发送的区别

访问PHP发送多个get请求

websocket接收消息再发送会发送两次

ROS串口通信简析(一)——串口发送