Home | History | Annotate | Download | only in launcher2

Lines Matching defs:scrollProgress

1385                 float scrollProgress = getScrollProgress(screenCenter, v, i);
1389 float maxScrollProgress = Math.max(0, scrollProgress);
1390 float minScrollProgress = Math.min(0, scrollProgress);
1403 if (isRtl && (scrollProgress > 0)) {
1405 } else if (!isRtl && (scrollProgress < 0)) {
1406 alpha = mAlphaInterpolator.getInterpolation(1 - Math.abs(scrollProgress));
1409 alpha = mLeftScreenAlphaInterpolator.getInterpolation(1 - scrollProgress);
1418 boolean isOverscrollingFirstPage = isRtl ? scrollProgress > 0 : scrollProgress < 0;
1419 boolean isOverscrollingLastPage = isRtl ? scrollProgress < 0 : scrollProgress > 0;
1424 v.setRotationY(-TRANSITION_MAX_ROTATION * scrollProgress);
1432 v.setRotationY(-TRANSITION_MAX_ROTATION * scrollProgress);