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

相关推荐
修炼者4 小时前
Android Studio的技巧
android·android studio
雨白4 小时前
ARouter 入门指南:从基本跳转到对象传递
android
用户69371750013845 小时前
17.Kotlin 类:类的形态(四):枚举类 (Enum Class)
android·后端·kotlin
h***34635 小时前
MS SQL Server 实战 排查多列之间的值是否重复
android·前端·后端
用户69371750013845 小时前
16.Kotlin 类:类的形态(三):密封类 (Sealed Class)
android·后端·kotlin
摆烂积极分子7 小时前
安卓开发学习-安卓版本
android·学习
n***26569 小时前
MySQL JSON数据类型全解析(JSON datatype and functions)
android·mysql·json
t***82119 小时前
mysql的主从配置
android·mysql·adb
YF021111 小时前
Frida如何稳定连接PC端跟Android手机端
android·mac·xposed
O***P57112 小时前
【MySQL】MySQL内置函数--日期函数字符串函数数学函数其他相关函数
android·mysql·adb