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

  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 107 int availableScrollHeight = getAvailableScrollHeight(rowCount);
109 layoutManager.scrollToPositionWithOffset(0, (int) -(availableScrollHeight * touchFraction));
  /packages/apps/Launcher3/src/com/android/launcher3/
BaseRecyclerView.java 200 * AvailableScrollHeight = Total height of the all items - last page height
204 int availableScrollHeight = totalHeight - getVisibleHeight();
205 return availableScrollHeight;
258 int availableScrollHeight = getAvailableScrollHeight(rowCount);
259 if (availableScrollHeight <= 0) {
269 (int) (((float) scrollY / availableScrollHeight) * availableScrollBarHeight);
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsRecyclerView.java 238 int availableScrollHeight = getAvailableScrollHeight(mApps.getNumAppRows());
239 mFastScrollHelper.smoothScrollToSection(scrollY, availableScrollHeight, lastInfo);
278 int availableScrollHeight = getAvailableScrollHeight(mApps.getNumAppRows());
279 if (availableScrollHeight <= 0) {
289 (int) (((float) scrollY / availableScrollHeight) * availableScrollBarHeight);

Completed in 212 milliseconds