日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

android miui9.0改装条例,安卓的通知适配(更新至9.0)

發(fā)布時(shí)間:2025/3/15 编程问答 15 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android miui9.0改装条例,安卓的通知适配(更新至9.0) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

有的手機(jī)在添加channel后仍然無法彈出通知。追蹤logcat發(fā)現(xiàn)有這么一句:

E/NotificationService: Suppressing notification from package by user request.

用戶請(qǐng)求抑制此通知?追蹤notify源碼找到NotificationManagerService的enqueueNotificationInternal(......)方法:

void enqueueNotificationInternal(final String pkg, final String opPkg, final int callingUid,final int callingPid, final String tag, final int id, final Notification notification,int incomingUserId) {

...

if (!checkDisqualifyingFeatures(userId, notificationUid, id, tag, r)) {return;}

...

mHandler.post(new EnqueueNotificationRunnable(userId, r));

}

private boolean checkDisqualifyingFeatures(int userId, int callingUid, int id, String tag,NotificationRecord r) {

...// blocked apps

if (isBlocked(r, mUsageStats)) {return false;}

return true;

}

protected boolean isBlocked(NotificationRecord r, NotificationUsageStats usageStats) {

final String pkg = r.sbn.getPackageName();

final int callingUid = r.sbn.getUid();

final boolean isPackageSuspended = isPackageSuspendedForUser(pkg, callingUid);

if (isPackageSuspended) {

Slog.e(TAG, "Suppressing notification from package due to package suspended by administrator.");

usageStats.registerSuspendedByAdmin(r);

return isPackageSuspended;

}

final boolean isBlocked = mRankingHelper.getImportance(pkg, callingUid) == NotificationManager.IMPORTANCE_NONE

|| r.getChannel().getImportance() == NotificationManager.IMPORTANCE_NONE;

if (isBlocked) {

Slog.e(TAG, "Suppressing notification from package by user request.");

usageStats.registerBlocked(r);

}

return isBlocked;

}

最終的isBlocked判斷條件滿足,導(dǎo)致notify操作被中斷return。

總結(jié)

以上是生活随笔為你收集整理的android miui9.0改装条例,安卓的通知适配(更新至9.0)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。