diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml
index f11fd92c20c26..4866f55db7927 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 bb9142a56db31..e08f67b5e861a 100644
--- a/core/res/res/values/symbols.xml
+++ b/core/res/res/values/symbols.xml
@@ -4742,6 +4742,7 @@
+
diff --git a/services/core/java/com/android/server/am/AppRestrictionController.java b/services/core/java/com/android/server/am/AppRestrictionController.java
index b8fb9e85ac08b..2288e091e9b6f 100644
--- a/services/core/java/com/android/server/am/AppRestrictionController.java
+++ b/services/core/java/com/android/server/am/AppRestrictionController.java
@@ -1726,7 +1726,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);
}