I'm trying to make ScrollView automatically scroll to the end of the whole element. I've noticed that
scrollview.setVelocity(-700);
// OR
scrollview.setPosition(1000);
will do the trick, but the amount required to get all the way to the end makes the view jump and go past too fast. If I use a smaller velocity the view will just jitter a bit in place.
Any way to make the view scroll to the end smoothly so that the user can see what's happening?