标签: android scroll surfaceview glsurfaceview smooth-scrolling
我试图在我的GLSurfaceView中实现惯性滚动,为此我需要弄清楚如何计算速度,但我不知道该怎么做。翻译存储在矩阵中,并通过下面的代码行计算。
matrix.postTranslate(event.getX() - start.x,event.getY() - start.y);
答案 0 :(得分:3)
查看Scroller和VelocityTracker课程。它们一起用于在标准框架小部件中实现fling行为。使用这些,您的应用将始终与设备的原生感相匹配。
Scroller
VelocityTracker