Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/viewbinder/
DFooterViewBinder.kt22 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView in <lambda>()
34 footer: FooterView, in <lambda>()
54 footer: FooterView, in <lambda>()
79 footer: FooterView, in <lambda>()
117 footer: FooterView, in <lambda>()
153 footer: FooterView, in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java90 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView;
401 FooterView view = mock(FooterView.class); in manageNotifications_visible()
414 FooterView view = mock(FooterView.class); in clearAll_visible()
428 ArgumentCaptor<FooterView> captor = ArgumentCaptor.forClass(FooterView.class); in testInflateFooterView()
441 FooterView view = mock(FooterView.class); in testUpdateFooter_noNotifications()
458 FooterView view = mock(FooterView.class); in testUpdateFooter_remoteInput()
474 FooterView view = mock(FooterView.class); in testUpdateFooter_withoutNotifications()
490 FooterView view = mock(FooterView.class); in testUpdateFooter_oneClearableNotification()
507 FooterView view = mock(FooterView.class); in testUpdateFooter_withoutHistory()
523 FooterView view = mock(FooterView.class); in testUpdateFooter_oneClearableNotification_beforeUserSetup()
[all …]
DStackScrollAlgorithmTest.kt22 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView in <lambda>()
23 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView.FooterViewState in <lambda>()
66 private val footerView = FooterView(context, /*attrs=*/ null) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/view/
DFooterView.java57 public class FooterView extends StackScrollerDecorView { class
83 public FooterView(Context context, AttributeSet attrs) { in FooterView() method in FooterView
478 if (view instanceof FooterView) { in applyToView()
479 FooterView footerView = (FooterView) view; in applyToView()
486 if (child instanceof FooterView) { in animateTo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewbinder/
DNotificationListViewBinder.kt35 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView in <lambda>()
142 .inflateLayout<FooterView>( in <lambda>()
148 .collectLatest { footerView: FooterView -> in <lambda>()
166 footerView: FooterView, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java37 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView;
169 } else if (view instanceof FooterView) { in updateAlphaState()
276 } else if (view instanceof FooterView) { in debugLogView()
495 && !(view instanceof FooterView) in initAlgorithmState()
650 if (view instanceof FooterView) {
656 if (((FooterView) view).shouldBeHidden() || !ambientState.isShadeExpanded()) {
662 ((FooterView.FooterViewState) viewState).hideContent =
676 ((FooterView.FooterViewState) viewState).hideContent =
797 && !(child instanceof FooterView); in childNeedsGapHeight()
DNotificationStackScrollLayout.java108 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView;
279 protected FooterView mFooterView;
1939 ((FooterView.FooterViewState) mFooterView.getViewState()).resetY |= mImeInset > 0;
4564 public void setFooterView(@NonNull FooterView footerView) { in setFooterView()
5189 if (child instanceof FooterView) { in dump()
5443 FooterView footerView = (FooterView) LayoutInflater.from(mContext).inflate( in inflateFooterView()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/footer/ui/view/
DFooterViewTest.java71 FooterView mView;
77 mView = (FooterView) LayoutInflater.from(mSpyContext).inflate( in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/viewmodel/
DFooterViewModel.kt26 import com.android.systemui.statusbar.notification.footer.ui.view.FooterView in <lambda>()