diff options
-rw-r--r-- | api/current.txt | 2 | ||||
-rw-r--r-- | api/removed.txt | 8 | ||||
-rw-r--r-- | core/java/android/service/notification/NotificationListenerService.java | 18 |
3 files changed, 23 insertions, 5 deletions
diff --git a/api/current.txt b/api/current.txt index 85a3fc5..d79ffba 100644 --- a/api/current.txt +++ b/api/current.txt @@ -27345,7 +27345,7 @@ package android.service.notification { method public java.lang.String getKey(); method public int getRank(); method public boolean isAmbient(); - method public boolean meetsInterruptionFilter(); + method public boolean matchesInterruptionFilter(); } public static class NotificationListenerService.RankingMap implements android.os.Parcelable { diff --git a/api/removed.txt b/api/removed.txt index 93484de..1b8aef4 100644 --- a/api/removed.txt +++ b/api/removed.txt @@ -16,6 +16,14 @@ package android.os { } +package android.service.notification { + + public static class NotificationListenerService.Ranking { + method public boolean meetsInterruptionFilter(); + } + +} + package android.view { public static class WindowManager.LayoutParams extends android.view.ViewGroup.LayoutParams implements android.os.Parcelable { diff --git a/core/java/android/service/notification/NotificationListenerService.java b/core/java/android/service/notification/NotificationListenerService.java index 4651d7e..450b9a7 100644 --- a/core/java/android/service/notification/NotificationListenerService.java +++ b/core/java/android/service/notification/NotificationListenerService.java @@ -539,7 +539,7 @@ public abstract class NotificationListenerService extends Service { private String mKey; private int mRank = -1; private boolean mIsAmbient; - private boolean mMeetsInterruptionFilter; + private boolean mMatchesInterruptionFilter; public Ranking() {} @@ -571,17 +571,27 @@ public abstract class NotificationListenerService extends Service { /** * Returns whether the notification meets the user's interruption * filter. + * + * @removed */ public boolean meetsInterruptionFilter() { - return mMeetsInterruptionFilter; + return mMatchesInterruptionFilter; + } + + /** + * Returns whether the notification matches the user's interruption + * filter. + */ + public boolean matchesInterruptionFilter() { + return mMatchesInterruptionFilter; } private void populate(String key, int rank, boolean isAmbient, - boolean meetsInterruptionFilter) { + boolean matchesInterruptionFilter) { mKey = key; mRank = rank; mIsAmbient = isAmbient; - mMeetsInterruptionFilter = meetsInterruptionFilter; + mMatchesInterruptionFilter = matchesInterruptionFilter; } } |