Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DStackScrollAlgorithmTest.kt633 headerVisibleAmount = 1f
661 headerVisibleAmount = 1f
695 headerVisibleAmount = 1f
726 headerVisibleAmount = 0f
730 childHunView.headerVisibleAmount = 0f
757 headerVisibleAmount = 0.5f
762 childHunView.headerVisibleAmount = 0.5f
940 headerVisibleAmount: Float
947 whenever(this.headerVisibleAmount).thenReturn(headerVisibleAmount)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
H A DNotificationTemplateViewWrapper.java344 public void setHeaderVisibleAmount(float headerVisibleAmount) { in setHeaderVisibleAmount() argument
345 super.setHeaderVisibleAmount(headerVisibleAmount); in setHeaderVisibleAmount()
348 mNotificationHeader.setAlpha(headerVisibleAmount); in setHeaderVisibleAmount()
349 headerTranslation = (1.0f - headerVisibleAmount) * mFullHeaderTranslation; in setHeaderVisibleAmount()
H A DNotificationViewWrapper.java381 public void setHeaderVisibleAmount(float headerVisibleAmount) { in setHeaderVisibleAmount() argument
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpAppearanceController.java397 float headerVisibleAmount = 1.0f; in updateHeader() local
400 headerVisibleAmount = mAppearFraction; in updateHeader()
402 row.setHeaderVisibleAmount(headerVisibleAmount); in updateHeader()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationChildrenContainer.java1463 public void setHeaderVisibleAmount(float headerVisibleAmount) {
1464 mHeaderVisibleAmount = headerVisibleAmount;
1465 mCurrentHeaderTranslation = (int) ((1.0f - headerVisibleAmount) * mTranslationForHeader);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentView.java2064 public void setHeaderVisibleAmount(float headerVisibleAmount) {
2066 mContractedWrapper.setHeaderVisibleAmount(headerVisibleAmount);
2069 mHeadsUpWrapper.setHeaderVisibleAmount(headerVisibleAmount);
2072 mExpandedWrapper.setHeaderVisibleAmount(headerVisibleAmount);
H A DExpandableNotificationRow.java797 public void setHeaderVisibleAmount(float headerVisibleAmount) {
798 if (mHeaderVisibleAmount != headerVisibleAmount) {
799 mHeaderVisibleAmount = headerVisibleAmount;
801 l.setHeaderVisibleAmount(headerVisibleAmount);
804 mChildrenContainer.setHeaderVisibleAmount(headerVisibleAmount);