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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…