Home
last modified time | relevance | path

Searched refs:FooterView (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutTest.java65 import com.android.systemui.statusbar.notification.row.FooterView;
275 FooterView view = mock(FooterView.class); in manageNotifications_visible()
287 FooterView view = mock(FooterView.class); in clearAll_visible()
300 ArgumentCaptor<FooterView> captor = ArgumentCaptor.forClass(FooterView.class); in testInflateFooterView()
312 FooterView view = mock(FooterView.class); in testUpdateFooter_noNotifications()
332 FooterView view = mock(FooterView.class); in testUpdateFooter_remoteInput()
348 FooterView view = mock(FooterView.class); in testUpdateFooter_oneClearableNotification()
364 FooterView view = mock(FooterView.class); in testUpdateFooter_oneClearableNotification_beforeUserSetup()
384 FooterView view = mock(FooterView.class); in testUpdateFooter_oneNonClearableNotification()
410 verify(mStackScroller).changeViewPosition(any(FooterView.class), eq(expected)); in testUpdateFooter_atEnd()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DFooterView.java33 public class FooterView extends StackScrollerDecorView { class
38 public FooterView(Context context, AttributeSet attrs) { in FooterView() method in FooterView
148 if (view instanceof FooterView) { in applyToView()
149 FooterView footerView = (FooterView) view; in applyToView()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DFooterViewTest.java43 FooterView mView;
47 mView = (FooterView) LayoutInflater.from(mContext).inflate( in setUp()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DStackScrollAlgorithm.java37 import com.android.systemui.statusbar.notification.row.FooterView;
309 && !(view instanceof FooterView) in initAlgorithmState()
455 if (view instanceof FooterView) { in updateChild()
464 ((FooterView.FooterViewState) viewState).hideContent = in updateChild()
561 && !(child instanceof FooterView); in childNeedsGapHeight()
H A DNotificationStackScrollLayout.java101 import com.android.systemui.statusbar.notification.row.FooterView;
258 protected FooterView mFooterView;
4422 void setFooterView(@NonNull FooterView footerView) { in setFooterView()
5175 FooterView footerView = (FooterView) LayoutInflater.from(mContext).inflate( in inflateFooterView()