Searched defs:scrollProgress (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardWidgetPager.java491 protected boolean isOverScrollChild(int index, float scrollProgress) { argument
493 return (isInOverscroll && (index == 0 && scrollProgress < 0 ||
494 index == getChildCount() - 1 && scrollProgress > 0));
505 float scrollProgress = getScrollProgress(screenCenter, v, i);
509 if (isOverScrollChild(i, scrollProgress) && PERFORM_OVERSCROLL_ROTATION) {
514 v.setRotationY(- OVERSCROLL_MAX_ROTATION * scrollProgress);
515 v.setOverScrollAmount(Math.abs(scrollProgress), scrollProgress < 0);

Completed in 117 milliseconds