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

  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragmentCarousel.java 77 private int mLastScrollPosition;
222 mLastScrollPosition = l;
240 return (mLastScrollPosition > mLowerThreshold) ? UPDATES_PAGE : ABOUT_PAGE;
244 return (mLastScrollPosition < mUpperThreshold) ? ABOUT_PAGE : UPDATES_PAGE;
ContactDetailTabCarousel.java 86 private int mLastScrollPosition = Integer.MIN_VALUE;
343 float alpha = mLastScrollPosition * MAX_ALPHA / mAllowedHorizontalScrollLength;
357 if (mLastScrollPosition == x) return;
368 mLastScrollPosition = x;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsHorizontalScrollView.java 54 protected int mLastScrollPosition;
157 mLastScrollPosition = scrollPositionOfMostRecent();
158 scrollTo(mLastScrollPosition, 0);
317 mLastScrollPosition = scrollPositionOfMostRecent();
326 scrollTo(mLastScrollPosition, 0);
RecentsVerticalScrollView.java 54 protected int mLastScrollPosition;
164 mLastScrollPosition = scrollPositionOfMostRecent();
165 scrollTo(0, mLastScrollPosition);
325 mLastScrollPosition = scrollPositionOfMostRecent();
334 scrollTo(0, mLastScrollPosition);

Completed in 78 milliseconds