Android通知监听权限NotificationListener

Android通知监听权限NotificationListener

是否启用通知监听权限

通过 Settings.Secure.getString 获取启用了通知监听权限的列表,然后根据其中是否包含来判断

列表的字符串是这样的结构:应用包名称1/通知监听类全路径1:应用包名称2/通知监听类全路径2

例如包名为 shendi.notify,通知监听类在包下,名称为 MyNotifyService

shendi.notify/shendi.notify.MyNotifyService

所以判断当前应用是否启用通知监听权限代码如下

java 复制代码
public static boolean isNotificationListenerEnabled(Context context) {
    String packageName = context.getPackageName();

    // 获取系统中所有启用了通知监听权限的包名
    String enabledListeners = Settings.Secure.getString(context.getContentResolver(), "enabled_notification_listeners");
    System.out.println(enabledListeners);
    if (enabledListeners != null && !TextUtils.isEmpty(enabledListeners)) {
        String[] packages = enabledListeners.split(":");
        for (String packageNameInList : packages) {
            if (packageNameInList.contains(packageName)) {
                return true;
            }
        }
    }

    return false;
}

跳转系统通知监听页

当没开通通知监听权限,一般需要跳转,代码如下

java 复制代码
Intent intent = new Intent(Settings.ACTION_NOTIFICATION_LISTENER_SETTINGS);
context.startActivity(intent);

END

相关推荐
zhangjiaofa1 小时前
深入理解 Android 中的 ActivityInfo
android
zhangjiaofa1 小时前
深入理解 Android 中的 ApplicationInfo
android
weixin_460783872 小时前
Flutter Android修改应用名称、应用图片、应用启动画面
android·flutter
我惠依旧3 小时前
安卓H5项目通过adb更新H5项目
android·adb
加勒比之杰克3 小时前
【数据库初阶】MySQL中表的约束(上)
android·数据库·mysql
tmacfrank3 小时前
Jetpack Compose 学习笔记(一)—— 快速上手
android·android jetpack
@OuYang10 小时前
android10 audio音量曲线
android
三爷麋了鹿14 小时前
VNC Viewer安卓版安装与操作
android
起个随便的昵称16 小时前
安卓入门十一 常用网络协议四
android·网络
BoomHe16 小时前
Android 车载性能优化-内存泄漏
android