Searched refs:bigContentView (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
H A DNotification.java202 public RemoteViews bigContentView; field in class:Notification
598 bigContentView = RemoteViews.CREATOR.createFromParcel(parcel);
663 if (this.bigContentView != null) {
664 that.bigContentView = this.bigContentView.clone();
757 if (bigContentView != null) {
759 bigContentView.writeToParcel(parcel, 0);
908 if (bigContentView != null) {
909 bigContentView.setUser(user);
1604 n.bigContentView
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java708 RemoteViews large = sbn.notification.bigContentView;
1006 final RemoteViews oldBigContentView = oldNotification.notification.bigContentView;
1007 final RemoteViews bigContentView = notification.notification.bigContentView;
1014 + " bigContentView=" + oldBigContentView
1019 + " bigContentView=" + bigContentView);
1033 (oldEntry.getLargeView() == null && bigContentView == null)
1034 || ((oldEntry.getLargeView() != null && bigContentView != null)
1035 && bigContentView
[all...]

Completed in 87 milliseconds