Loading core/res/res/values/strings.xml +3 −3 Original line number Diff line number Diff line Loading @@ -2997,11 +2997,11 @@ <!-- [CHAR LIMIT=NONE] Stub notification title for an app running a service that has provided a bad bad notification for itself. --> <string name="app_running_notification_title"><xliff:g id="app_name">%1$s</xliff:g> running</string> is running</string> <!-- [CHAR LIMIT=NONE] Stub notification text for an app running a service that has provided a bad bad notification for itself. --> <string name="app_running_notification_text"><xliff:g id="app_name">%1$s</xliff:g> is currently running</string> <string name="app_running_notification_text">Touch for more information or to stop the app.</string> <!-- Preference framework strings. --> <string name="ok">OK</string> Loading services/java/com/android/server/am/ServiceRecord.java +31 −31 Original line number Diff line number Diff line Loading @@ -376,9 +376,10 @@ class ServiceRecord extends Binder { // icon, but this used to be able to slip through, so for // those dirty apps give it the app's icon. foregroundNoti.icon = appInfo.icon; if (foregroundNoti.contentView == null) { // In this case the app may not have specified a // content view... so we'll give them something to show. // Do not allow apps to present a sneaky invisible content view either. foregroundNoti.contentView = null; foregroundNoti.bigContentView = null; CharSequence appName = appInfo.loadLabel( ams.mContext.getPackageManager()); if (appName == null) { Loading Loading @@ -408,7 +409,6 @@ class ServiceRecord extends Binder { foregroundNoti.icon = 0; } } } if (foregroundNoti.icon == 0) { // Notifications whose icon is 0 are defined to not show // a notification, silently ignoring it. We don't want to Loading Loading
core/res/res/values/strings.xml +3 −3 Original line number Diff line number Diff line Loading @@ -2997,11 +2997,11 @@ <!-- [CHAR LIMIT=NONE] Stub notification title for an app running a service that has provided a bad bad notification for itself. --> <string name="app_running_notification_title"><xliff:g id="app_name">%1$s</xliff:g> running</string> is running</string> <!-- [CHAR LIMIT=NONE] Stub notification text for an app running a service that has provided a bad bad notification for itself. --> <string name="app_running_notification_text"><xliff:g id="app_name">%1$s</xliff:g> is currently running</string> <string name="app_running_notification_text">Touch for more information or to stop the app.</string> <!-- Preference framework strings. --> <string name="ok">OK</string> Loading
services/java/com/android/server/am/ServiceRecord.java +31 −31 Original line number Diff line number Diff line Loading @@ -376,9 +376,10 @@ class ServiceRecord extends Binder { // icon, but this used to be able to slip through, so for // those dirty apps give it the app's icon. foregroundNoti.icon = appInfo.icon; if (foregroundNoti.contentView == null) { // In this case the app may not have specified a // content view... so we'll give them something to show. // Do not allow apps to present a sneaky invisible content view either. foregroundNoti.contentView = null; foregroundNoti.bigContentView = null; CharSequence appName = appInfo.loadLabel( ams.mContext.getPackageManager()); if (appName == null) { Loading Loading @@ -408,7 +409,6 @@ class ServiceRecord extends Binder { foregroundNoti.icon = 0; } } } if (foregroundNoti.icon == 0) { // Notifications whose icon is 0 are defined to not show // a notification, silently ignoring it. We don't want to Loading