Android M Zen mode(勿扰)分析

应用需要申请android.permission.ACCESS_NOTIFICATION_POLICY(属于 PROTECTION_NORMAL)才可以操作Zen mode

在Settings下,用户可以设置哪些应用能控制Zen mode。

获取所有申请android.permission.ACCESS_NOTIFICATION_POLICY的package列表:

NotificationManager.getPackagesRequestingNotificationPolicyAccess()

设置应用ACCESS_NOTIFICATION_POLICY的权限

NotificationManager.setNotificationPolicyAccessGranted(pkg, access);

应用如果在没有申请权限的情况下,NotificationManagerService.enforePolicyAccess(pkg, method)会抛出SecurityException。


手动设置勿扰模式:

NotificationManger.setZenMode(int mode, Uri conditionId, String reason);

NotificationMangerService.setZenMode(int mode, Uri conditionId, String reason);

ZenModeHelper.setManualZenMode(int mode, Uri conditionId, String reason);

ZenModeHelper.setManualZenMode(int mode, Uri conditionId, String reason, boolean setRingerMode);这里根据传入的新的配置,创建一个新的ZenRule赋值到mConfig复制出来的ZenModeConfig中;如果是关闭勿扰,则清除所有自动规则

ZenModeHelper.setConfig(ZenModeConfig config, String reason, boolean setRingerMode);在这里回调OnConfigChange和OnPolicyChange,设置ZEN_MODE_CONGIF_ETAG的值

ZenModeHelper.evaluteZenMode(String reason, boolean setRingerMode);

ZenModeHelper.computeZenMode(ArraySet automaticRulesOut);在没有手动规则的情况下,这个返回active自动规则中zenmode优先级最高的模式

ZenModeHelper.updateRingerModeAffectedStreams();这里调用了AudioManger.updateRingerModeAffectedStreamsInternal();

ZenModeHelper.setZenModeSetting(int zen);将勿扰模式设置到SettingProvide中,key为Global.ZEN_MODE

ZenModeHelper.applyZenToRingerMode();设置铃声模式到SILENT,NORMAL

ZenModeHelper.applyRestrictions();这里设置Notification、call和alarm的限制

最后再回调OnZenModeChanged



你可能感兴趣的:(Android M Zen mode(勿扰)分析)