diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml
index 34c706d3c2a93..1b947e961f360 100644
--- a/core/res/res/values/strings.xml
+++ b/core/res/res/values/strings.xml
@@ -6265,14 +6265,16 @@ ul.
Background Activity
- Background Activity
+ An app is using battery
+
+ An app is still active
- %1$s is running in the background and draining battery. Tap to review.
+ %1$s is using battery in the background. Tap to review.
- %1$s is running in the background for a long time. Tap to review.
+ %1$s might affect battery life. Tap to review active apps.
Check active apps
diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml
index cefba56b957ef..15af08c46de13 100644
--- a/core/res/res/values/symbols.xml
+++ b/core/res/res/values/symbols.xml
@@ -4743,6 +4743,7 @@
+
diff --git a/services/core/java/com/android/server/am/AppRestrictionController.java b/services/core/java/com/android/server/am/AppRestrictionController.java
index 910ca8e0974cf..de94929fbafcb 100644
--- a/services/core/java/com/android/server/am/AppRestrictionController.java
+++ b/services/core/java/com/android/server/am/AppRestrictionController.java
@@ -1776,7 +1776,7 @@ public final class AppRestrictionController {
}
postNotificationIfNecessary(NOTIFICATION_TYPE_LONG_RUNNING_FGS,
- com.android.internal.R.string.notification_title_abusive_bg_apps,
+ com.android.internal.R.string.notification_title_long_running_fgs,
com.android.internal.R.string.notification_content_long_running_fgs,
pendingIntent, packageName, uid, null);
}