Loading packages/SystemUI/res/values/strings.xml +1 −1 Original line number Diff line number Diff line Loading @@ -1888,7 +1888,7 @@ <!-- Notification Inline controls: describes how the notification was adjusted [CHAR_LIMIT=NONE] --> <string name="feedback_demoted">This notification was automatically <b>ranked lower</b> in your shade.</string> <!-- Notification Inline controls: prompts the user for feedback [CHAR_LIMIT=NONE] --> <string name="feedback_prompt">Was this correct?</string> <string name="feedback_prompt">Let the developer know your feedback. Was this correct?</string> <!-- Notification Inline controls: responds to user provided feedback [CHAR_LIMIT=NONE] --> <string name="feedback_response">Thanks for your feedback!</string> <string name="feedback_ok">OK</string> Loading packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/FeedbackInfoTest.java +7 −4 Original line number Diff line number Diff line Loading @@ -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 Loading @@ -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 Loading @@ -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()); } Loading @@ -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 Loading Loading
packages/SystemUI/res/values/strings.xml +1 −1 Original line number Diff line number Diff line Loading @@ -1888,7 +1888,7 @@ <!-- Notification Inline controls: describes how the notification was adjusted [CHAR_LIMIT=NONE] --> <string name="feedback_demoted">This notification was automatically <b>ranked lower</b> in your shade.</string> <!-- Notification Inline controls: prompts the user for feedback [CHAR_LIMIT=NONE] --> <string name="feedback_prompt">Was this correct?</string> <string name="feedback_prompt">Let the developer know your feedback. Was this correct?</string> <!-- Notification Inline controls: responds to user provided feedback [CHAR_LIMIT=NONE] --> <string name="feedback_response">Thanks for your feedback!</string> <string name="feedback_ok">OK</string> Loading
packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/FeedbackInfoTest.java +7 −4 Original line number Diff line number Diff line Loading @@ -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 Loading @@ -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 Loading @@ -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()); } Loading @@ -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 Loading