NotificationListenerService不能和我一起使用android 7.0

时间:2017-11-08 15:03:09

标签: java android

我想删除评论短信 MainActivity:

 if(!isNotificationServiceEnabled()){
            enableNotificationListenerAlertDialog = buildNotificationServiceAlertDialog();
            enableNotificationListenerAlertDialog.show();
        }

并在服务中:

  if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
        cancelNotification(sbn.getPackageName(), sbn.getTag(), sbn.getId());
    }
    else {
        cancelNotification(sbn.getKey());
    }
}

使用Android 4.4评测短信这个干净时显示, android 7.0评论只显示,不要清理 我想删除评论短信(图片中) enter image description here

0 个答案:

没有答案