Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +7 −3 Original line number Diff line number Diff line Loading @@ -591,10 +591,14 @@ public class PhoneStatusBar extends BaseStatusBar { } final StatusBarNotification oldNotification = oldEntry.notification; final RemoteViews oldContentView = oldNotification.notification.contentView; final RemoteViews contentView = notification.notification.contentView; // XXX: modify when we do something more intelligent with the two content views final RemoteViews oldContentView = (oldNotification.notification.bigContentView != null) ? oldNotification.notification.bigContentView : oldNotification.notification.contentView; final RemoteViews contentView = (notification.notification.bigContentView != null) ? notification.notification.bigContentView : notification.notification.contentView; if (DEBUG) { Slog.d(TAG, "old notification: when=" + oldNotification.notification.when Loading packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java +7 −2 Original line number Diff line number Diff line Loading @@ -867,9 +867,14 @@ public class TabletStatusBar extends BaseStatusBar implements } final StatusBarNotification oldNotification = oldEntry.notification; final RemoteViews oldContentView = oldNotification.notification.contentView; final RemoteViews contentView = notification.notification.contentView; // XXX: modify when we do something more intelligent with the two content views final RemoteViews oldContentView = (oldNotification.notification.bigContentView != null) ? oldNotification.notification.bigContentView : oldNotification.notification.contentView; final RemoteViews contentView = (notification.notification.bigContentView != null) ? notification.notification.bigContentView : notification.notification.contentView; if (DEBUG) { Slog.d(TAG, "old notification: when=" + oldNotification.notification.when Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +7 −3 Original line number Diff line number Diff line Loading @@ -591,10 +591,14 @@ public class PhoneStatusBar extends BaseStatusBar { } final StatusBarNotification oldNotification = oldEntry.notification; final RemoteViews oldContentView = oldNotification.notification.contentView; final RemoteViews contentView = notification.notification.contentView; // XXX: modify when we do something more intelligent with the two content views final RemoteViews oldContentView = (oldNotification.notification.bigContentView != null) ? oldNotification.notification.bigContentView : oldNotification.notification.contentView; final RemoteViews contentView = (notification.notification.bigContentView != null) ? notification.notification.bigContentView : notification.notification.contentView; if (DEBUG) { Slog.d(TAG, "old notification: when=" + oldNotification.notification.when Loading
packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java +7 −2 Original line number Diff line number Diff line Loading @@ -867,9 +867,14 @@ public class TabletStatusBar extends BaseStatusBar implements } final StatusBarNotification oldNotification = oldEntry.notification; final RemoteViews oldContentView = oldNotification.notification.contentView; final RemoteViews contentView = notification.notification.contentView; // XXX: modify when we do something more intelligent with the two content views final RemoteViews oldContentView = (oldNotification.notification.bigContentView != null) ? oldNotification.notification.bigContentView : oldNotification.notification.contentView; final RemoteViews contentView = (notification.notification.bigContentView != null) ? notification.notification.bigContentView : notification.notification.contentView; if (DEBUG) { Slog.d(TAG, "old notification: when=" + oldNotification.notification.when Loading