-
创建通知管理器
//getSystemService()在Context类或者ContextWrapper类有,一般通过继承后者来持有
manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); -
创建通知渠道对象并将其注入到通知管理器
//创建渠道对象并指定id、名称和重要性;id将被通知管理器用来确定通知被哪个渠道对象执行
NotificationChannel notificationChannel1 = new NotificationChannel(CHANNEL1_ID, CHANNEL1_NAME,NotificationManager.IMPORTANCE_HIGH);
//设置是否锁屏可视
notificationChannel1.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
//将渠道对象注入到通知管理器
manager.createNotificationChannel(notificationChannel1); -
创建通知对象并通过.notify(int id, Notification notify)方法发送通知
Notification.Builder builder = new Notification.Builder(getApplicationContext(), CHANNEL1_ID)
.setContentTitle(notifyTitle).setContentText(notifyContent).setSmallIcon(R.mipmap.android_img);
manager.notify(notifyID,builder.build()); -
可以给Builder设置点击之后跳转的Activity和点击之后是否取消通知的显示
Intent intent = new Intent(getApplicationContext(),NotificationAction.class);
PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(),0,intent,PendingIntent.FLAG_UPDATE_CURRENT);builder.setAutoCancel(true).setContentIntent(pendingIntent);
通知的创建
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:2018年东北农业大学春季校赛 B wyh的矩阵【找规律】
下一篇:服务
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Spring 中创建通知
的操作。不过,Spring里只有一种连接点,即方法调用,所以前置通知事实上就
方法调用 spring 拦截器