Merge "Don't update OverScroller fling state if no time has passed since start" into lmp-mr1-dev
This commit is contained in:
@@ -904,6 +904,10 @@ public class OverScroller {
|
|||||||
final long time = AnimationUtils.currentAnimationTimeMillis();
|
final long time = AnimationUtils.currentAnimationTimeMillis();
|
||||||
final long currentTime = time - mStartTime;
|
final long currentTime = time - mStartTime;
|
||||||
|
|
||||||
|
if (currentTime == 0) {
|
||||||
|
// Skip work but report that we're still going if we have a nonzero duration.
|
||||||
|
return mDuration > 0;
|
||||||
|
}
|
||||||
if (currentTime > mDuration) {
|
if (currentTime > mDuration) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user