zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

android 11.0 SystemUI 屏蔽通知栏通知

Android 通知 屏蔽 11.0 SystemUI
2023-09-14 09:05:05 时间

在11.0的定制化SystemUI开发中,所有的通知显示都是由Notication.java负责的,所以我们来先看
Notification 的监听加载流程,回到 statusBar 的start()中注册 NotificationListenerWithPlugins 作为系统service监听通知消息

try {
   
mNotificationListener.registerAsSystemService(mContext,
new ComponentName(mContext.getPackageName(), getClass().getCanonicalName()),
UserHandle.USER_ALL);
} catch (RemoteException e)