Switch into the snap state faster after the overscroll.

This commit is contained in:
Doug Turner 2011-11-07 14:17:01 -08:00
Родитель ad5c52346c
Коммит abb9a1ffb6
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -450,8 +450,10 @@ public class PanZoomController
else // must be Overscroll.PLUS
velocity = Math.max((velocity - OVERSCROLL_DECEL_RATE) * elasticity, 0.0f);
if (velocity == 0.0f)
if (Math.abs(velocity) < 0.3f) {
velocity = 0.0f;
mFlingState = FlingStates.WAITING_TO_SNAP;
}
}
// Starts a snap-into-place operation.