我想删除评论短信 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