Home
last modified time | relevance | path

Searched refs:rightIcon (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationGroupingUtil.java459 ImageView rightIcon = child.findViewById(com.android.internal.R.id.right_icon); in apply() local
460 boolean keepRightIcon = rightIcon != null && Integer.valueOf(1).equals( in apply()
461 rightIcon.getTag(R.id.tag_keep_when_showing_left_icon)); in apply()
466 Drawable rightDrawable = rightIcon == null ? null : rightIcon.getDrawable(); in apply()
472 if (rightIcon != null) { in apply()
474 && rightIcon.getDrawable() != null; in apply()
475 rightIcon.setVisibility(showRightIcon ? View.VISIBLE : View.GONE); in apply()
/frameworks/base/core/java/android/app/
DNotification.java5957 private void calculateRightIconDimens(Icon rightIcon, boolean isPromotedPicture, in calculateRightIconDimens() argument
5970 if (rightIcon != null && (isPromotedPicture in calculateRightIconDimens()
5972 Drawable drawable = rightIcon.loadDrawable(mContext); in calculateRightIconDimens()
5984 result.setRightIconState(rightIcon != null /* visible */, viewWidthDp, in calculateRightIconDimens()
5999 Icon rightIcon = p.mHideRightIcon ? null in bindLargeIcon() local
6003 if (leftIcon != rightIcon || leftIcon == null) { in bindLargeIcon()
6016 calculateRightIconDimens(rightIcon, isPromotedPicture, result); in bindLargeIcon()
6019 if (rightIcon != null) { in bindLargeIcon()
6025 contentView.setImageViewIcon(R.id.right_icon, rightIcon); in bindLargeIcon()
6028 processLargeLegacyIcon(rightIcon, contentView, p); in bindLargeIcon()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java515 ImageView rightIcon = child.findViewById(com.android.internal.R.id.right_icon); in setIconAnimationRunningForChild() local
516 setImageViewAnimationRunning(rightIcon, running); in setIconAnimationRunningForChild()