2

I've a scrollview in my activity . When I scroll down , it doesn't scroll much and I want to increase the the amount of scroll .

How can I do so?

donald draper
  • 561
  • 2
  • 9
  • 24

1 Answers1

1

Flinging is the type of scrolling that occurs when a user drags and lifts her finger quickly.

@Override
public void fling(int velocityY) {
int topVelocityY = (int) ((Math.min(Math.abs(velocityY), MAX_SCROLL_SPEED) ) * Math.signum(velocityY));
super.fling(topVelocityY);
}

I copied it from here.

Kapil Rajput
  • 11,429
  • 9
  • 50
  • 65