Saturday, 10 April 2021

ScrollTo(0,250) with animation Android ScrollView

When i scrollTo(0,250) i want to include an animation with the scrollaction. i did this code but it is not scrolling according to the animation. scrollMe is the scrolling widget id.

ObjectAnimator anim = ObjectAnimator.ofInt(scrollMe, "translationY",
                        250, 0);
                anim.setDuration(800);
                anim.start();
                scrollMe.scrollTo(0, 250);


from ScrollTo(0,250) with animation Android ScrollView

No comments:

Post a Comment