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

  /packages/apps/Launcher3/src/com/android/launcher3/
BaseRecyclerView.java 185 * AvailableScrollHeight = Total height of the all items - last page height
194 int availableScrollHeight = scrollHeight - visibleHeight;
195 return availableScrollHeight;
241 int availableScrollHeight = getAvailableScrollHeight(rowCount, scrollPosState.rowHeight,
246 if (availableScrollHeight <= 0) {
257 (int) (((float) scrollY / availableScrollHeight) * availableScrollBarHeight);
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 105 int availableScrollHeight = getAvailableScrollHeight(rowCount, mScrollPosState.rowHeight, 0);
107 layoutManager.scrollToPositionWithOffset(0, (int) -(availableScrollHeight * touchFraction));
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsRecyclerView.java 170 int availableScrollHeight = getAvailableScrollHeight(rowCount, mScrollPosState.rowHeight, 0);
173 layoutManager.scrollToPositionWithOffset(0, (int) -(availableScrollHeight * touchFraction));

Completed in 187 milliseconds