Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
H A DSectionHeaderController.kt30 import com.android.systemui.statusbar.notification.stack.SectionHeaderView
35 val headerView: SectionHeaderView?
49 private var _view: SectionHeaderView? = null
73 as SectionHeaderView
84 override val headerView: SectionHeaderView?
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DSectionHeaderView.java38 public class SectionHeaderView extends StackScrollerDecorView { class
47 public SectionHeaderView(Context context, AttributeSet attrs) { in SectionHeaderView() method in SectionHeaderView
H A DNotificationSectionsManager.kt77 val silentHeaderView: SectionHeaderView?
81 val alertingHeaderView: SectionHeaderView?
85 val incomingHeaderView: SectionHeaderView?
89 val peopleHeaderView: SectionHeaderView?
H A DStackScrollAlgorithm.java560 && !(previousChild instanceof SectionHeaderView) in childNeedsGapHeight()
H A DNotificationStackScrollLayout.java1740 if (child instanceof SectionHeaderView) {
5044 if (view instanceof SectionHeaderView && silentSectionWillBeGone) { in shouldHideParent()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSectionsManagerTest.java117 when(mIncomingHeaderController.getHeaderView()).thenReturn(mock(SectionHeaderView.class)); in setUp()
118 when(mPeopleHeaderController.getHeaderView()).thenReturn(mock(SectionHeaderView.class)); in setUp()
119 when(mAlertingHeaderController.getHeaderView()).thenReturn(mock(SectionHeaderView.class)); in setUp()
120 when(mSilentHeaderController.getHeaderView()).thenReturn(mock(SectionHeaderView.class)); in setUp()
255 SectionHeaderView silentHeaderView = mSectionsManager.getSilentHeaderView(); in testHeaderRemovedFromTransientParent()