OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
;
221
mLastScrollPosition
= l;
260
return (
mLastScrollPosition
> mLowerThreshold) ? UPDATES_PAGE : ABOUT_PAGE;
262
return (
mLastScrollPosition
< mUpperThreshold) ? UPDATES_PAGE : ABOUT_PAGE;
268
return (
mLastScrollPosition
< mUpperThreshold) ? ABOUT_PAGE : UPDATES_PAGE;
270
return (
mLastScrollPosition
> mLowerThreshold) ? ABOUT_PAGE : UPDATES_PAGE;
ContactDetailTabCarousel.java
83
private int
mLastScrollPosition
= Integer.MIN_VALUE;
340
float alpha =
mLastScrollPosition
* MAX_ALPHA / mAllowedHorizontalScrollLength;
354
if (
mLastScrollPosition
== x) return;
365
mLastScrollPosition
= x;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsHorizontalScrollView.java
50
protected int
mLastScrollPosition
;
164
mLastScrollPosition
= scrollPositionOfMostRecent();
165
scrollTo(
mLastScrollPosition
, 0);
320
mLastScrollPosition
= scrollPositionOfMostRecent();
329
scrollTo(
mLastScrollPosition
, 0);
RecentsVerticalScrollView.java
50
protected int
mLastScrollPosition
;
172
mLastScrollPosition
= scrollPositionOfMostRecent();
173
scrollTo(0,
mLastScrollPosition
);
329
mLastScrollPosition
= scrollPositionOfMostRecent();
338
scrollTo(0,
mLastScrollPosition
);
Completed in 121 milliseconds