Home
last modified time | relevance | path

Searched refs:headerVisibleAmount (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationHeaderViewWrapper.java192 public void setHeaderVisibleAmount(float headerVisibleAmount) { in setHeaderVisibleAmount() argument
193 super.setHeaderVisibleAmount(headerVisibleAmount); in setHeaderVisibleAmount()
194 mNotificationHeader.setAlpha(headerVisibleAmount); in setHeaderVisibleAmount()
195 mHeaderTranslation = (1.0f - headerVisibleAmount) * mTranslationForHeader; in setHeaderVisibleAmount()
DNotificationViewWrapper.java181 public void setHeaderVisibleAmount(float headerVisibleAmount) { in setHeaderVisibleAmount() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpAppearanceController.java280 float headerVisibleAmount = 1.0f; in updateHeader() local
282 headerVisibleAmount = mExpandFraction; in updateHeader()
284 row.setHeaderVisibleAmount(headerVisibleAmount); in updateHeader()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java1733 public void setHeaderVisibleAmount(float headerVisibleAmount) { in setHeaderVisibleAmount() argument
1735 mContractedWrapper.setHeaderVisibleAmount(headerVisibleAmount); in setHeaderVisibleAmount()
1738 mHeadsUpWrapper.setHeaderVisibleAmount(headerVisibleAmount); in setHeaderVisibleAmount()
1741 mExpandedWrapper.setHeaderVisibleAmount(headerVisibleAmount); in setHeaderVisibleAmount()
DExpandableNotificationRow.java632 public void setHeaderVisibleAmount(float headerVisibleAmount) {
633 if (mHeaderVisibleAmount != headerVisibleAmount) {
634 mHeaderVisibleAmount = headerVisibleAmount;
635 mPrivateLayout.setHeaderVisibleAmount(headerVisibleAmount);
637 mChildrenContainer.setHeaderVisibleAmount(headerVisibleAmount);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationChildrenContainer.java1314 public void setHeaderVisibleAmount(float headerVisibleAmount) {
1315 mHeaderVisibleAmount = headerVisibleAmount;
1316 mCurrentHeaderTranslation = (int) ((1.0f - headerVisibleAmount) * mTranslationForHeader);