From af92d3af645bb087edc6534676a763d4f21af76f Mon Sep 17 00:00:00 2001 From: Chloris Kuo Date: Fri, 29 Jan 2021 16:28:53 -0800 Subject: NAS Feedback UI change feedback prompt as per suggested by PWG Test: tested on device Test: atest FeedbackInfoTest Bug: 178866475 Change-Id: I847da9c690d1ab3195e3b0bca54dcb16b531a6fc --- packages/SystemUI/res/values/strings.xml | 2 +- .../systemui/statusbar/notification/row/FeedbackInfoTest.java | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/packages/SystemUI/res/values/strings.xml b/packages/SystemUI/res/values/strings.xml index cb7327f7629c..749c820ab4d0 100644 --- a/packages/SystemUI/res/values/strings.xml +++ b/packages/SystemUI/res/values/strings.xml @@ -1888,7 +1888,7 @@ This notification was automatically <b>ranked lower</b> in your shade. - Was this correct? + Let the developer know your feedback. Was this correct? Thanks for your feedback! OK diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/FeedbackInfoTest.java b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/FeedbackInfoTest.java index 53ff957e4016..fe2f5f0237ea 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/FeedbackInfoTest.java +++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/FeedbackInfoTest.java @@ -146,7 +146,8 @@ public class FeedbackInfoTest extends SysuiTestCase { mAssistantFeedbackController); TextView prompt = mFeedbackInfo.findViewById(R.id.prompt); assertEquals("This notification was automatically demoted to Silent by the system. " - + "Was this correct?", prompt.getText().toString()); + + "Let the developer know your feedback. Was this correct?", + prompt.getText().toString()); } @Test @@ -157,7 +158,8 @@ public class FeedbackInfoTest extends SysuiTestCase { mAssistantFeedbackController); TextView prompt = mFeedbackInfo.findViewById(R.id.prompt); assertEquals("This notification was automatically ranked higher in your shade. " - + "Was this correct?", prompt.getText().toString()); + + "Let the developer know your feedback. Was this correct?", + prompt.getText().toString()); } @Test @@ -168,7 +170,7 @@ public class FeedbackInfoTest extends SysuiTestCase { mAssistantFeedbackController); TextView prompt = mFeedbackInfo.findViewById(R.id.prompt); assertEquals("This notification was automatically promoted to Default by the system. " - + "Was this correct?", + + "Let the developer know your feedback. Was this correct?", prompt.getText().toString()); } @@ -180,7 +182,8 @@ public class FeedbackInfoTest extends SysuiTestCase { mAssistantFeedbackController); TextView prompt = mFeedbackInfo.findViewById(R.id.prompt); assertEquals("This notification was automatically ranked lower in your shade. " - + "Was this correct?", prompt.getText().toString()); + + "Let the developer know your feedback. Was this correct?", + prompt.getText().toString()); } @Test -- cgit v1.2.3-59-g8ed1b