Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java809 final OnDrawerScrollListener scrollListener = mOnDrawerScrollListener; in animateClose() local
810 if (scrollListener != null) { in animateClose()
811 scrollListener.onScrollStarted(); in animateClose()
815 if (scrollListener != null) { in animateClose()
816 scrollListener.onScrollEnded(); in animateClose()
831 final OnDrawerScrollListener scrollListener = mOnDrawerScrollListener; in animateOpen() local
832 if (scrollListener != null) { in animateOpen()
833 scrollListener.onScrollStarted(); in animateOpen()
839 if (scrollListener != null) { in animateOpen()
840 scrollListener.onScrollEnded(); in animateOpen()
/aosp12/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/recyclerview/
H A DCarUiRecyclerView.java203 void addOnScrollListener(OnScrollListener scrollListener); in addOnScrollListener() argument
400 void removeOnScrollListener(OnScrollListener scrollListener); in removeOnScrollListener() argument
H A DCarUiRecyclerViewImpl.java442 public void addOnScrollListener(OnScrollListener scrollListener) { in addOnScrollListener() argument
446 mScrollListeners.add(scrollListener); in addOnScrollListener()
621 public void removeOnScrollListener(OnScrollListener scrollListener) { in removeOnScrollListener() argument
622 mScrollListeners.remove(scrollListener); in removeOnScrollListener()
/aosp12/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
H A DQS.java118 default void setScrollListener(ScrollListener scrollListener) {} in setScrollListener() argument
/aosp12/packages/apps/QuickAccessWallet/src/com/android/systemui/plugin/globalactions/wallet/
H A DWalletCardCarousel.java179 void setCardScrollListener(OnCardScrollListener scrollListener) { in setCardScrollListener() argument
180 mCardScrollListener = scrollListener; in setCardScrollListener()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/wallet/ui/
H A DWalletCardCarousel.java180 void setCardScrollListener(OnCardScrollListener scrollListener) { in setCardScrollListener() argument
181 mCardScrollListener = scrollListener; in setCardScrollListener()
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/list/
H A DOldSpeedDialFragment.java87 private final ScrollListener scrollListener = new ScrollListener(this); field in OldSpeedDialFragment
161 listView.setOnScrollListener(scrollListener); in onCreateView()
/aosp12/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/androidTest/java/com/android/car/ui/recyclerview/
H A DCarUiRecyclerViewTest.java732 CarUiRecyclerView.OnScrollListener scrollListener = in testPageUpScrollsWithoutSnap() local
751 carUiRecyclerView.addOnScrollListener(scrollListener); in testPageUpScrollsWithoutSnap()
758 verify(scrollListener, times(1)).onScrollStateChanged( in testPageUpScrollsWithoutSnap()
764 verify(scrollListener, times(2)).onScrollStateChanged( in testPageUpScrollsWithoutSnap()
770 CarUiRecyclerView.OnScrollListener scrollListener = in testPageDownScrollsWithoutSnap() local
783 carUiRecyclerView.addOnScrollListener(scrollListener); in testPageDownScrollsWithoutSnap()
790 verify(scrollListener, times(1)).onScrollStateChanged( in testPageDownScrollsWithoutSnap()
796 verify(scrollListener, times(2)).onScrollStateChanged( in testPageDownScrollsWithoutSnap()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/allapps/
H A DAllAppsContainerView.java613 public void addElevationController(RecyclerView.OnScrollListener scrollListener) { in addElevationController() argument
615 mAH[AdapterHolder.MAIN].recyclerView.addOnScrollListener(scrollListener); in addElevationController()