Reduce speed of smooth scroll in scroll view

后端 未结 5 1002
栀梦
栀梦 2021-02-03 19:44

I have a scroll View. I performed smooth-scroll.using smoothScrollBy().It all works fine, but I want to change the duration of the smooth-scroll. Smooth-scroll happens very fast

5条回答
  •  有刺的猬
    2021-02-03 19:57

    The simple answer is just to replace

    scrollView.smoothScrollTo(0, scrollTo);
    

    with

    ObjectAnimator.ofInt(scrollView, "scrollY",  scrollTo).setDuration(duration).start();
    

    where duration is the time in milliseconds you want it to take.

提交回复
热议问题