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);
ObjectAnimator objectAnimator = ObjectAnimator.ofInt(view, "scrollY", 0, 250).setDuration(duration);
objectAnimator.start();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With