Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72a4c15c authored by Justin Koh's avatar Justin Koh Committed by Android Git Automerger
Browse files

am 5e6b8d37: Merge "Hide new methods in notificationlistenerservice DO NOT...

am 5e6b8d37: Merge "Hide new methods in notificationlistenerservice DO NOT MERGE" into klp-modular-dev

* commit '5e6b8d37':
  Hide new methods in notificationlistenerservice DO NOT MERGE
parents dcf080d5 5e6b8d37
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -22771,11 +22771,8 @@ package android.service.notification {
    ctor public NotificationListenerService();
    method public final void cancelAllNotifications();
    method public final void cancelNotification(java.lang.String, java.lang.String, int);
    method public final void cancelNotifications(java.lang.String[]);
    method public android.service.notification.StatusBarNotification[] getActiveNotifications();
    method public android.service.notification.StatusBarNotification[] getActiveNotifications(java.lang.String[]);
    method public android.os.IBinder onBind(android.content.Intent);
    method public void onListenerConnected(java.lang.String[]);
    method public abstract void onNotificationPosted(android.service.notification.StatusBarNotification);
    method public abstract void onNotificationRemoved(android.service.notification.StatusBarNotification);
    field public static final java.lang.String SERVICE_INTERFACE = "android.service.notification.NotificationListenerService";
+3 −0
Original line number Diff line number Diff line
@@ -89,6 +89,7 @@ public abstract class NotificationListenerService extends Service {
     * at this time.
     *
     * @param notificationKeys The notification keys for all currently posted notifications.
     * @hide
     */
    public void onListenerConnected(String[] notificationKeys) {
        // optional
@@ -155,6 +156,7 @@ public abstract class NotificationListenerService extends Service {
     * @param keys Notifications to dismiss, or {@code null} to dismiss all.
     *
     * {@see #cancelNotification(String, String, int)}
     * @hide
     */
    public final void cancelNotifications(String[] keys) {
        if (!isBound()) return;
@@ -181,6 +183,7 @@ public abstract class NotificationListenerService extends Service {
     *
     * @param keys A specific list of notification keys, or {@code null} for all.
     * @return An array of active notifications.
     * @hide
     */
    public StatusBarNotification[] getActiveNotifications(String[] keys) {
        if (!isBound()) return null;