热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

NotificationManagerService启动(“Notifications通知”拆解)

NotificationManagerService启动(“Notifications通知”拆解)android12-release应用侧一般导入No

NotificationManagerService启动(“Notifications 通知”拆解)

android12-release




应用侧一般导入NotificationCompat

Jetpack: androidx.core.app.NotificationCompatandroidx.core.app.NotificationManagerCompat
实质:对mNotificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE)封装


NotificationManagerService启动

frameworks/base/services/java/com/android/server/SystemServer.java


  • NotificationManagerService依赖于StorageManagerService
  • publishBinderServiceContext.NOTIFICATION_SERVICE添加到ServiceManager.java

t.traceBegin("StartNotificationManager");
mSystemServiceManager.startService(NotificationManagerService.class);
SystemNotificationChannels.removeDeprecated(context);
SystemNotificationChannels.createAll(context);
notification = INotificationManager.Stub.asInterface(ServiceManager.getService(Context.NOTIFICATION_SERVICE));
t.traceEnd();

在这里插入图片描述


推荐阅读
author-avatar
川大蛋炒饭-_246
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有