Loading services/core/java/com/android/server/notification/NotificationIntrusivenessExtractor.java +10 −4 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ import android.util.Log; import android.util.Slog; /** * This {@link com.android.server.notification.NotificationSignalExtractor} noticies noisy * This {@link com.android.server.notification.NotificationSignalExtractor} notices noisy * notifications and marks them to get a temporary ranking bump. */ public class NotificationIntrusivenessExtractor implements NotificationSignalExtractor { Loading @@ -44,10 +44,16 @@ public class NotificationIntrusivenessExtractor implements NotificationSignalExt return null; } if (record.getImportance() >= NotificationListenerService.Ranking.IMPORTANCE_DEFAULT) { final Notification notification = record.getNotification(); if (record.getImportance() > NotificationListenerService.Ranking.IMPORTANCE_DEFAULT) { if ((notification.defaults & Notification.DEFAULT_VIBRATE) != 0 || notification.vibrate != null || (notification.defaults & Notification.DEFAULT_SOUND) != 0 || notification.sound != null || notification.fullScreenIntent != null) { record.setRecentlyIntrusive(true); } } return new RankingReconsideration(record.getKey(), HANG_TIME_MS) { @Override Loading Loading
services/core/java/com/android/server/notification/NotificationIntrusivenessExtractor.java +10 −4 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ import android.util.Log; import android.util.Slog; /** * This {@link com.android.server.notification.NotificationSignalExtractor} noticies noisy * This {@link com.android.server.notification.NotificationSignalExtractor} notices noisy * notifications and marks them to get a temporary ranking bump. */ public class NotificationIntrusivenessExtractor implements NotificationSignalExtractor { Loading @@ -44,10 +44,16 @@ public class NotificationIntrusivenessExtractor implements NotificationSignalExt return null; } if (record.getImportance() >= NotificationListenerService.Ranking.IMPORTANCE_DEFAULT) { final Notification notification = record.getNotification(); if (record.getImportance() > NotificationListenerService.Ranking.IMPORTANCE_DEFAULT) { if ((notification.defaults & Notification.DEFAULT_VIBRATE) != 0 || notification.vibrate != null || (notification.defaults & Notification.DEFAULT_SOUND) != 0 || notification.sound != null || notification.fullScreenIntent != null) { record.setRecentlyIntrusive(true); } } return new RankingReconsideration(record.getKey(), HANG_TIME_MS) { @Override Loading