HomeSort by relevance Sort by last modified time
    Searched defs:availableScrollHeight (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 102 int availableScrollHeight = getAvailableScrollHeight();
104 layoutManager.scrollToPositionWithOffset(0, (int) -(availableScrollHeight * touchFraction));
148 * AvailableScrollHeight = Total height of the all items - last page height
155 int availableScrollHeight = totalHeight - getVisibleHeight();
156 return availableScrollHeight;
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsRecyclerView.java 271 int availableScrollHeight = getAvailableScrollHeight();
272 mFastScrollHelper.smoothScrollToSection(scrollY, availableScrollHeight, lastInfo);
315 int availableScrollHeight = getAvailableScrollHeight();
316 if (availableScrollHeight <= 0) {
328 (int) (((float) scrollY / availableScrollHeight) * availableScrollBarHeight);
359 synchronizeScrollBarThumbOffsetToViewScroll(scrollY, availableScrollHeight);
426 * AvailableScrollHeight = Total height of the all items - last page height

Completed in 287 milliseconds