I found something that gave the effect I want with little problems. expand the gallery and override onFling (),
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
return super.onFling(e1, e2, velocityX / 10, velocityY / 10);
}
10 , .