Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmTest.kt825 createHunViewMock(isShadeOpen = true, fullyVisible = false, headerVisibleAmount = 1f) in <lambda>()
850 createHunViewMock(isShadeOpen = true, fullyVisible = false, headerVisibleAmount = 1f) in <lambda>()
881 createHunViewMock(isShadeOpen = true, fullyVisible = true, headerVisibleAmount = 1f) in <lambda>()
909 createHunViewMock(isShadeOpen = false, fullyVisible = false, headerVisibleAmount = 0f) in <lambda>()
912 childHunView.headerVisibleAmount = 0f in <lambda>()
937 createHunViewMock(isShadeOpen = false, fullyVisible = false, headerVisibleAmount = 0.5f) in <lambda>()
941 childHunView.headerVisibleAmount = 0.5f in <lambda>()
1162 headerVisibleAmount: Float in <lambda>()
1169 whenever(this.headerVisibleAmount).thenReturn(headerVisibleAmount) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationTemplateViewWrapper.java340 public void setHeaderVisibleAmount(float headerVisibleAmount) { in setHeaderVisibleAmount() argument
341 super.setHeaderVisibleAmount(headerVisibleAmount); in setHeaderVisibleAmount()
344 mNotificationHeader.setAlpha(headerVisibleAmount); in setHeaderVisibleAmount()
345 headerTranslation = (1.0f - headerVisibleAmount) * mFullHeaderTranslation; in setHeaderVisibleAmount()
DNotificationViewWrapper.java398 public void setHeaderVisibleAmount(float headerVisibleAmount) { in setHeaderVisibleAmount() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpAppearanceController.java425 float headerVisibleAmount = 1.0f; in updateHeader() local
430 headerVisibleAmount = mAppearFraction; in updateHeader()
433 row.setHeaderVisibleAmount(headerVisibleAmount); in updateHeader()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationChildrenContainer.java1619 public void setHeaderVisibleAmount(float headerVisibleAmount) {
1620 mHeaderVisibleAmount = headerVisibleAmount;
1621 mCurrentHeaderTranslation = (int) ((1.0f - headerVisibleAmount) * mTranslationForHeader);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java2173 public void setHeaderVisibleAmount(float headerVisibleAmount) {
2175 mContractedWrapper.setHeaderVisibleAmount(headerVisibleAmount);
2178 mHeadsUpWrapper.setHeaderVisibleAmount(headerVisibleAmount);
2181 mExpandedWrapper.setHeaderVisibleAmount(headerVisibleAmount);
DExpandableNotificationRow.java824 public void setHeaderVisibleAmount(float headerVisibleAmount) {
825 if (mHeaderVisibleAmount != headerVisibleAmount) {
826 mHeaderVisibleAmount = headerVisibleAmount;
828 l.setHeaderVisibleAmount(headerVisibleAmount);
831 mChildrenContainer.setHeaderVisibleAmount(headerVisibleAmount);