Scroll up a ScrollView slowly

前端 未结 5 580
小蘑菇
小蘑菇 2020-12-09 18:31

The question is \"How do i scroll up a ScrollView to top very smoothly and slowly\".

In my special case i need to scroll to top in about 1-2 seconds. Ive tried inter

5条回答
  •  悲哀的现实
    2020-12-09 18:36

    I did it using object animator (Available in API >= 3) and it looks very good:

    Define an ObjectAnimator: final ObjectAnimator animScrollToTop = ObjectAnimator.ofInt(this, "scrollY", 0);

    (this refers to the class extending Android's ScrollView)

    you can set its duration as you wish:

    animScrollToTop.setDuration(2000); (2 seconds)

    P.s. Don't forget to start the animation.

提交回复
热议问题