From b2c2d1aa17898d27e5224e332a81d41212e7621e Mon Sep 17 00:00:00 2001 From: Chloris Kuo Date: Wed, 10 Aug 2022 12:39:02 -0700 Subject: [PATCH] Add new intent to open NAS detail settings page in NAS app. Bug: 231492005 Test: manually on local device Change-Id: I87361b640c5fc7b258e3e807e14baeab52a66953 --- core/api/system-current.txt | 1 + .../NotificationAssistantService.java | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/core/api/system-current.txt b/core/api/system-current.txt index 572101c11bd30..ef68d97c8b7c1 100644 --- a/core/api/system-current.txt +++ b/core/api/system-current.txt @@ -11479,6 +11479,7 @@ package android.service.notification { method public void onPanelRevealed(int); method public void onSuggestedReplySent(@NonNull String, @NonNull CharSequence, int); method public final void unsnoozeNotification(@NonNull String); + field public static final String ACTION_NOTIFICATION_ASSISTANT_DETAIL_SETTINGS = "android.service.notification.action.NOTIFICATION_ASSISTANT_DETAIL_SETTINGS"; field public static final String FEEDBACK_RATING = "feedback.rating"; field public static final String SERVICE_INTERFACE = "android.service.notification.NotificationAssistantService"; field public static final int SOURCE_FROM_APP = 0; // 0x0 diff --git a/core/java/android/service/notification/NotificationAssistantService.java b/core/java/android/service/notification/NotificationAssistantService.java index 91042bfa3402a..a38ef96760729 100644 --- a/core/java/android/service/notification/NotificationAssistantService.java +++ b/core/java/android/service/notification/NotificationAssistantService.java @@ -90,6 +90,21 @@ public abstract class NotificationAssistantService extends NotificationListenerS public static final String SERVICE_INTERFACE = "android.service.notification.NotificationAssistantService"; + /** + * Activity Action: Show notification assistant detail setting page in NAS app. + *

+ * In some cases, a matching Activity may not exist, so ensure you + * safeguard against this. + *

+ * Input: Nothing. + *

+ * Output: Nothing. + */ + @SdkConstant(SdkConstant.SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_NOTIFICATION_ASSISTANT_DETAIL_SETTINGS = + "android.service.notification.action.NOTIFICATION_ASSISTANT_DETAIL_SETTINGS"; + + /** * Data type: int, the feedback rating score provided by user. The score can be any integer * value depends on the experimental and feedback UX design.