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

  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 77 public String scrollToPositionAtProgress(float touchFraction) {
87 float pos = rowCount * touchFraction;
90 layoutManager.scrollToPositionWithOffset(0, (int) -(availableScrollHeight * touchFraction));
92 int posInt = (int) ((touchFraction == 1)? pos -1 : pos);
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AlphabeticalAppsList.java 68 public float touchFraction;
553 info.touchFraction = 0f;
558 info.touchFraction = item.rowIndex * rowFraction + subRowFraction;
567 info.touchFraction = 0f;
570 info.touchFraction = cumulativeTouchFraction;
AllAppsRecyclerView.java 237 public String scrollToPositionAtProgress(float touchFraction) {
252 if (info.touchFraction > touchFraction) {
  /packages/apps/Launcher3/src/com/android/launcher3/
BaseRecyclerView.java 252 protected abstract String scrollToPositionAtProgress(float touchFraction);

Completed in 94 milliseconds