当前位置:网站首页>systemui shield notification bar
systemui shield notification bar
2022-08-10 14:54:00 【Indulge _ iraqis】
背景描述
The client said to block notifications in an app,But not all of them are blocked,Only block some notifications for the specified app.
很奇怪,This thing needs to be done by the system,Wouldn't it be nice if the app didn't send notifications?
但是没办法,甲方爸爸的需求,唉(:
需求实现
方案1 ------ systemuiBlock notifications
vendor/mediatek/proprietary/packages/apps/SystemUI/src/com/android/systemui/statusbar/notification/NotificationFilter.java的shouldFilterOutAdd filtering to the method
/** * "packageName/channelId" * 表示 This is the package namechannelIDnotifications can be displayed,All others are blocked,Judgment logic see{@link notificationHide} * */
private static void initNotificationFilterList(){
notificationFilterList.add("com.aaa.bbb/background_download");
notificationFilterList.add("com.aaaa.ccc/background__upgrade");
}
/** * @return true/false When marking, specify whether hiding is required at the same time * @param key 指定应用的包名 * @param channelId Displays the specified notification,All other notifications are filtered * */
public static boolean notificationHide(String key,String channelId){
if (notificationFilterList.size() == 0){
initNotificationFilterList();
}
if (key != null && key.length() > 0 && channelId != null && channelId.length() > 0){
for (int i=0;i < notificationFilterList.size();i++){
String index = notificationFilterList.get(i);
String packageName ;
String cId ;
if (index != null && index.length() > 0){
String[] dex = index.split("/");
if (dex !=null && dex.length == 2){
packageName = dex[0];
cId = dex[1];
if (key.contains(packageName)
&& !channelId.equals(cId)) {
return true;
}
}
}
}
}
return false;
}
/** * @return true if the provided notification should NOT be shown right now. */
public boolean shouldFilterOut(NotificationEntry entry) {
final StatusBarNotification sbn = entry.getSbn();
...
if (sbn != null){
if (notificationHide(sbn.getKey(),sbn.getNotification().getChannelId())){
//Block app notifications
return true;
}
}
...
return false;
}
vendor/mediatek/proprietary/packages/apps/SystemUI/src/com/android/systemui/statusbar/NotificationListener.java的onNotificationPosted中
@Override
public void onNotificationPosted(final StatusBarNotification sbn,
final RankingMap rankingMap) {
if (DEBUG) Log.d(TAG, "onNotificationPosted: " + sbn);
if (sbn != null){
//Block app notifications
if (NotificationFilter.notificationHide(sbn.getKey(),sbn.getNotification().getChannelId())){
return ;
}
}
if (sbn != null && !onPluginNotificationPosted(sbn, rankingMap)) {
mMainHandler.post(() -> {
processForRemoteInput(sbn.getNotification(), mContext);
for (NotificationHandler handler : mNotificationHandlers) {
handler.onNotificationPosted(sbn, rankingMap);
}
});
}
}
The above method can be blockedsystemuiNotice below,Implement the specified application to display only the specified notification,All other notifications are required to be hidden.
but
This effect just doesn't show the notification,The notification itself is still there.
1、比如launcher's notification dot,Problems such as the notification display of long-pressing the desktop icon.
frameworks/base/core/java/android/service/notification/NotificationListenerService.java
的getActiveNotifications方法获取通知.
2、其它应用可以通过
frameworks/base/services/core/java/com/android/server/notification/NotificationManagerService.java的getNotificationRecord、getActiveNotificationsFromListenerOr other methods to get the notification content.
Re-trigger another way of thinking
We should fundamentally remove those notifications to block,Or just leave it out in the first placeadd到NotificationManagerService中去.
方案2 ------ framework中屏蔽
frameworks/base/services/core/java/com/android/server/notification/NotificationManagerService.java中
The acquisition of notifications is mainly in
@GuardedBy("mNotificationLock")
final ArrayList<NotificationRecord> mNotificationList = new ArrayList<>();
@GuardedBy("mNotificationLock")
final ArrayMap<String, NotificationRecord> mNotificationsByKey = new ArrayMap<>();
The two lists summap中存储.We want to implement blocking add,Implements blocking of specific notifications.
1、track above2个add和put数据的地方
2、PostNotificationRunnable的run方法中进行add和put通知数据
3、EnqueueNotificationRunnable中启动的PostNotificationRunnable
4、enqueueNotificationInternal方法中启动EnqueueNotificationRunnable,But later found that there are other places also enabledEnqueueNotificationRunnable.
所以我们在enqueueNotificationInternal和EnqueueNotificationRunnable 2Every place has added some shielding processing.
void enqueueNotificationInternal(...){
...
if (notificationHide(pkg,channelId)){
//过滤通知
return;
}
if (channel == null) {
final String noChannelStr = "No Channel found for "
}
...
}
内部类EnqueueNotificationRunnable的run方法中
public void run() {
...
if (contextId != null) {
(new SnoozeNotificationRunnable(r.getSbn().getKey(),
0, contextId)).snoozeLocked(r);
return;
}
//Block notifications
if(r != null && r.getSbn() !=null && r.getSbn().getNotification() !=null){
String key = r.getSbn().getKey();
String channelId = r.getSbn().getNotification().getChannelId();
if (notificationHide(key,channelId)){
return;
}
}
mEnqueuedNotifications.add(r);
...
}
这样修改之后,can be completely blocked,Notifications are no longer added to the list.
结尾
The above process is onlynotificationA small part of the notification process
Full notification sent----framework添加通知----systemui显示通知.etc. The process is not fully tracked.
如果有理解不到位的地方,欢迎留言~
补充
通知的使用:https://blog.csdn.net/jppipai/article/details/122864465
1、App sends notifications------framework中serviceManage notification data
NotificationManager.notify------NotificationManagerService.enqueueNotificationWithTag------NotificationManagerService.enqueueNotificationInternal
这里就和上面serviceThe place to block notifications echoed.
//manageras an interface to the upper layer,It will eventually fallserviceManage notification data
frameworks/base/core/java/android/app/NotificationManager.java
public void notify(int id, Notification notification)
{
notify(null, id, notification);
}
public void notify(String tag, int id, Notification notification)
{
notifyAsUser(tag, id, notification, mContext.getUser());
}
public void notifyAsUser(String tag, int id, Notification notification, UserHandle user)
{
INotificationManager service = getService();
String pkg = mContext.getPackageName();
try {
if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");
service.enqueueNotificationWithTag(pkg, mContext.getOpPackageName(), tag, id,
fixNotification(notification), user.getIdentifier());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
//serviceManage notification data
frameworks/base/services/core/java/com/android/server/notification/NotificationManagerService.java
@Override
public void enqueueNotificationWithTag(String pkg, String opPkg, String tag, int id,
Notification notification, int userId) throws RemoteException {
enqueueNotificationInternal(pkg, opPkg, Binder.getCallingUid(),
Binder.getCallingPid(), tag, id, notification, userId);
}
边栏推荐
猜你喜欢
随机推荐
$‘\r‘: command not found
[Gazebo Introductory Tutorial] Lecture 3 Static/Dynamic Programming Modeling of SDF Files
Understanding_Data_Types_in_Go
力扣解法汇总640-求解方程
DB2查询2个时间段之间的所有月份,DB2查询2个时间段之间的所有日期
【有限元分析】异型密封圈计算泄漏量与参数化优化过程(带分析源文件)
The a-modal in the antd component is set to a fixed height, and the content is scrolled and displayed
舵机内部结及工作原理浅析[通俗易懂]
面试面到了一个腾讯30k出来的,有见识到何为精通MySQL调优
WSL 提示音关闭
静态变量存储在哪个区
PyTorch 多机多卡训练:DDP 实战与技巧
MySQL - 数据库的存储引擎
格式化输出当前时间
systemui状态栏添加新图标
Epoll learn to think: a high performance server processing framework
学习MySQL 临时表
640. Solving Equations: Simple Simulation Problems
TestLink导出用例转换工具
镜像瘦身:每一层都不能放过









