Searched refs:largeIcon (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java261 if (n.largeIcon != null) {
299 ImageView largeIcon = (ImageView)group.findViewById(R.id.large_icon);
300 if (n.largeIcon != null) {
301 largeIcon.setImageBitmap(n.largeIcon);
302 largeIcon.setVisibility(View.VISIBLE);
303 final ViewGroup.LayoutParams lp = largeIcon.getLayoutParams();
305 if (n.largeIcon.getHeight() <= statusBarHeight) {
312 largeIcon.setLayoutParams(lp);
H A DTabletStatusBar.java877 oldEntry.largeIcon.setOnClickListener(listener);
880 oldEntry.largeIcon.setOnClickListener(null);
893 if (notification.notification.largeIcon != null) {
894 oldEntry.largeIcon.setImageBitmap(notification.notification.largeIcon);
896 oldEntry.largeIcon.getLayoutParams().width = 0;
897 oldEntry.largeIcon.setVisibility(View.INVISIBLE);
1778 ImageView largeIcon = (ImageView)row.findViewById(R.id.large_icon);
1779 if (sbn.notification.largeIcon != null) {
1780 largeIcon
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java40 public ImageView largeIcon; field in class:NotificationData.Entry
98 entry.largeIcon = null; // TODO add support for large icons
/frameworks/base/core/java/android/app/
H A DNotification.java162 public Bitmap largeIcon; field in class:Notification
378 largeIcon = Bitmap.CREATOR.createFromParcel(parcel);
420 if (this.largeIcon != null) {
421 that.largeIcon = Bitmap.createBitmap(this.largeIcon);
488 if (largeIcon != null) {
490 largeIcon.writeToParcel(parcel, 0);
1025 n.largeIcon = mLargeIcon;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java648 oldEntry.largeIcon.setOnClickListener(listener);
651 oldEntry.largeIcon.setOnClickListener(null);
664 if (notification.notification.largeIcon != null) {
665 oldEntry.largeIcon.setImageBitmap(notification.notification.largeIcon);
667 oldEntry.largeIcon.getLayoutParams().width = 0;
668 oldEntry.largeIcon.setVisibility(View.INVISIBLE);
741 ImageView largeIcon = (ImageView)row.findViewById(R.id.large_icon);
742 if (notification.notification.largeIcon != null) {
743 largeIcon
[all...]

Completed in 118 milliseconds