I'm using the >=4.3 NotificationListenerService
to access notifications. On the first start, my app takes the user to the "Access Notifications" system panel, but I'd like to take the user there whenever the checkbox for my app in "Access Notifications" is disabled. I haven't found a isNotificationAccessEnabled()
-method anywhere, but I definitely know that it's possible because apps like Krome do this, too.
4 回答
编辑 2016 年 6 月 15 日
我不确定这是添加到哪个版本的支持库,但看起来这个功能现在是内置的。只需使用:
NotificationManagerCompat.getEnabledListenerPackages(context);
(链接到文档)
这将返回一个Set<String>
您可以遍历以查找您的包名称的内容。但是请注意,我没有亲自测试过。但看起来它可能更喜欢使用它来代替我下面的旧解决方案。
旧解决方案
此代码适用于我的应用程序:
ContentResolver contentResolver = context.getContentResolver();
String enabledNotificationListeners = Settings.Secure.getString(contentResolver, "enabled_notification_listeners");
String packageName = context.getPackageName();
// check to see if the enabledNotificationListeners String contains our package name
if (enabledNotificationListeners == null || !enabledNotificationListeners.contains(packageName))
{
// in this situation we know that the user has not granted the app the Notification access permission
throw new Exception();
}
else
{
doSomethingThatRequiresNotificationAccessPermission();
}
我看到的典型值enabledNotificationsListeners
String
如下所示:
- 用户未授予其任何应用通知访问权限
null
或者""
- 用户已授予一个应用通知访问权限
"com.woodblockwithoutco.remotecontrollerexample/com.woodblockwithoutco.remotecontrollerexample.RemoteControlService"
- 用户已授予两个应用通知访问权限
"com.scootrnova.android/com.scootrnova.android.ListenerService:com.woodblockwithoutco.remotecontrollerexample/com.woodblockwithoutco.remotecontrollerexample.RemoteControlService"
这个实现非常简单,效果很好:)
PS我得到了使用这个答案中硬编码的“enabled_notification_listeners”字符串的想法。
从 Android 8.1 (SDK 27) 开始,您可以在 NotificationManager 上调用isNotificationListenerAccessGranted。这是要使用的正确 API。较旧的 Android 版本应使用getEnabledListenerPackages作为第二好的选择。依赖您的侦听器回调可能会产生不正确的结果。请参阅下面的说明。
我是 Krome 的开发者。我为检查服务是否启用所做的工作是添加公共静态变量,该变量在 onBind 方法中更改为 true,在 unbind 中更改为 false。这就是这项服务的工作方式。
编辑:
public static boolean isNotificationAccessEnabled = false;
@Override
public void onListenerConnected() {
isNotificationAccessEnabled = true;
}
@Override
public void onListenerDisconnected() {
isNotificationAccessEnabled = false;
}
与稍作修改的@Damians 答案一起使用效果很好
public class NotifyListener extends NotificationListenerService{
public static boolean listnerConnected = false;
@Override
public IBinder onBind(Intent intent) {
Log.d(name,"onBind Called");
listnerConnected = true;
return super.onBind(intent);
}
@Override
public void onDestroy()
{
super.onDestroy();
Log.e("destroy", "called");
listnerConnected = false;
}
}
从 Android 8.1 (SDK 27) 开始,您可以在 NotificationManager 上调用isNotificationListenerAccessGranted。这是要使用的正确 API,而不是公认的答案之一。请参阅下面的说明。
就像 shai tibber 也已经说过接受的答案是不正确的。
onListenerConnected()
onListenerDisconnect()
即使没有授予 NotificationListener 访问权限,也可以调用。所以依靠这个回调来设置一个布尔值会给出错误的结果。并且getEnabledListenerPackages(context)
只会返回所有在 AndroidManifest (android:enabled=true) 中定义了启用通知侦听器的包。它与用户访问没有直接关系。该文档明确指出:
获取其中具有启用的通知侦听器组件的一组包。