Loading packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java +3 −2 Original line number Diff line number Diff line Loading @@ -1136,8 +1136,9 @@ public abstract class BaseStatusBar extends SystemUI implements StatusBarNotification notification, boolean isHeadsUp) { final RemoteViews contentView = notification.getNotification().contentView; final RemoteViews bigContentView = notification.getNotification().bigContentView; final RemoteViews publicContentView = notification.getNotification().publicVersion.contentView; final Notification publicVersion = notification.getNotification().publicVersion; final RemoteViews publicContentView = publicVersion != null ? publicVersion.contentView : null; // Reapply the RemoteViews contentView.reapply(mContext, entry.expanded, mOnClickHandler); Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java +3 −2 Original line number Diff line number Diff line Loading @@ -1136,8 +1136,9 @@ public abstract class BaseStatusBar extends SystemUI implements StatusBarNotification notification, boolean isHeadsUp) { final RemoteViews contentView = notification.getNotification().contentView; final RemoteViews bigContentView = notification.getNotification().bigContentView; final RemoteViews publicContentView = notification.getNotification().publicVersion.contentView; final Notification publicVersion = notification.getNotification().publicVersion; final RemoteViews publicContentView = publicVersion != null ? publicVersion.contentView : null; // Reapply the RemoteViews contentView.reapply(mContext, entry.expanded, mOnClickHandler); Loading