Home
last modified time | relevance | path

Searched refs:scrollState (Results 1 – 10 of 10) sorted by relevance

/development/samples/MotionMechanics/src/com/android/mechanics/demo/tuneable/
DConfigDialog.kt62 val scrollState = rememberScrollState(initial = uiState.initialScroll) constant
76 .verticalScroll(scrollState) in <lambda>()
85 uiState.initialScroll = scrollState.value in <lambda>()
/development/samples/SceneTransitionLayoutDemo/src/com/android/compose/animation/scene/demo/notification/
DNotificationList.kt75 val scrollState = if (isScrollable) rememberScrollState() else null in ContentScope() constant
78 .thenIf(scrollState != null) { in ContentScope()
80 .verticalScroll(scrollState!!, overscrollEffect?.withoutVisualEffect()) in ContentScope()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DList13.java138 public void onScrollStateChanged(AbsListView view, int scrollState) { in onScrollStateChanged() argument
139 switch (scrollState) { in onScrollStateChanged()
DList9.java132 public void onScrollStateChanged(AbsListView view, int scrollState) { in onScrollStateChanged() argument
/development/samples/MotionMechanics/src/com/android/mechanics/demo/staging/debug/
DDebugUi.kt96 val scrollState = rememberScrollState() in DebugUi() constant
102 modifier = Modifier.verticalScroll(scrollState), in DebugUi()
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DDynamicListView.java540 public void onScrollStateChanged(AbsListView view, int scrollState) {
541 mCurrentScrollState = scrollState;
542 mScrollState = scrollState;
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/ui/
DImageGridFragment.java102 public void onScrollStateChanged(AbsListView absListView, int scrollState) { in onCreateView()
104 if (scrollState == AbsListView.OnScrollListener.SCROLL_STATE_FLING) { in onCreateView()
/development/samples/SceneTransitionLayoutDemo/src/com/android/compose/animation/scene/demo/
DQuickSettings.kt128 val scrollState = rememberScrollState() in QuickSettings() constant
136 .verticalScroll(scrollState, overscrollEffect = offsetOverscrollEffect) in QuickSettings()
/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
DContactsListFragment.java212 public void onScrollStateChanged(AbsListView absListView, int scrollState) { in onActivityCreated()
214 if (scrollState == AbsListView.OnScrollListener.SCROLL_STATE_FLING) { in onActivityCreated()
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DDigitalWatchFaceWearableConfigActivity.java146 public void onScrollStateChanged(int scrollState) {} in onScrollStateChanged() argument