Android - 删除Scroller中的fling减速度

时间:2014-11-28 12:43:07

标签: android scroller onfling

我在我的代码中使用的这一行使得它变得渺茫,但它最终会变慢。

mScroller.fling(getScrollX(), getScrollY(), velocityX, velocityY, 0, right - width, 0, bottom - height);

那么如何删除卷轴的减速/减速。

PS:我尝试将Interpolator添加到Scroller,但问题仍然存在。

2 个答案:

答案 0 :(得分:0)

您是否尝试过使用setFriction(0)或使用LinearInterpolator?

答案 1 :(得分:0)

我最终使用它而不是工作正常:

mScroller.startScroll(getScrollX(), getScrollY(), dx, dy, duration);