summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2010-09-07 14:13:12 -0400
committerJoe Onorato <joeo@google.com>2010-09-07 14:13:12 -0400
commitda695520782a9feba963840aad596a20929396f2 (patch)
tree34ce2dc534657970d28ba855f7cbfee3ac8f92b1 /packages
parent960b31e3b3b40f92665be4b7a79da7f05ea19751 (diff)
downloadframeworks_base-da695520782a9feba963840aad596a20929396f2.zip
frameworks_base-da695520782a9feba963840aad596a20929396f2.tar.gz
frameworks_base-da695520782a9feba963840aad596a20929396f2.tar.bz2
When notifications are updated, don't re-show the ticker unless the text has changed.
Bug: 2963867 Change-Id: I24b5bc958fb6eb0d753c88178a385232c75ea438
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java
index 8f2da7a..af736aa 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java
@@ -46,6 +46,7 @@ import android.os.Handler;
import android.os.Message;
import android.os.ServiceManager;
import android.os.SystemClock;
+import android.text.TextUtils;
import android.util.Slog;
import android.util.Log;
import android.view.Display;
@@ -462,7 +463,11 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks
}
// Restart the ticker if it's still running
- tick(notification);
+ if (notification.notification.tickerText != null
+ && !TextUtils.equals(notification.notification.tickerText,
+ oldEntry.notification.notification.tickerText)) {
+ tick(notification);
+ }
// Recalculate the position of the sliding windows and the titles.
setAreThereNotifications();