Lines Matching refs:scrollProgress
1018 float scrollProgress = getScrollProgress(screenCenter, child, i);
1019 float alpha = 1 - Math.abs(scrollProgress);
1543 float scrollProgress = delta / (totalDistance * 1.0f);
1544 scrollProgress = Math.min(scrollProgress, getMaxScrollProgress());
1545 scrollProgress = Math.max(scrollProgress, - getMaxScrollProgress());
1546 return scrollProgress;