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

  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 88 int availableScrollHeight = getAvailableScrollHeight();
90 layoutManager.scrollToPositionWithOffset(0, (int) -(availableScrollHeight * touchFraction));
133 * AvailableScrollHeight = Total height of the all items - last page height
140 int availableScrollHeight = totalHeight - getScrollbarTrackHeight();
141 return availableScrollHeight;
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsFastScrollHelper.java 98 public boolean smoothScrollToSection(int scrollY, int availableScrollHeight,
102 smoothSnapToPosition(scrollY, availableScrollHeight, info);
112 private void smoothSnapToPosition(int scrollY, int availableScrollHeight,
152 : Math.min(availableScrollHeight, mRv.getCurrentScrollY(newPosition, 0));
AllAppsRecyclerView.java 260 int availableScrollHeight = getAvailableScrollHeight();
261 mFastScrollHelper.smoothScrollToSection(scrollY, availableScrollHeight, lastInfo);
304 int availableScrollHeight = getAvailableScrollHeight();
305 if (availableScrollHeight <= 0) {
316 (((float) scrollY / availableScrollHeight) * availableScrollBarHeight);
347 synchronizeScrollBarThumbOffsetToViewScroll(scrollY, availableScrollHeight);
414 * AvailableScrollHeight = Total height of the all items - last page height
  /packages/apps/Launcher3/src/com/android/launcher3/
BaseRecyclerView.java 174 * AvailableScrollHeight = Total height of the all items - last page height
216 int availableScrollHeight) {
218 if (availableScrollHeight <= 0) {
227 (int) (((float) scrollY / availableScrollHeight) * getAvailableScrollBarHeight());

Completed in 529 milliseconds