OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:availableScrollHeight
(Results
1 - 4
of
4
) sorted by null
/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/
AllAppsFastScrollHelper.java
99
public boolean smoothScrollToSection(int scrollY, int
availableScrollHeight
,
103
smoothSnapToPosition(scrollY,
availableScrollHeight
, info);
113
private void smoothSnapToPosition(int scrollY, int
availableScrollHeight
,
147
int newScrollY = Math.min(
availableScrollHeight
,
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);
/packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java
107
int
availableScrollHeight
= getAvailableScrollHeight(rowCount);
109
layoutManager.scrollToPositionWithOffset(0, (int) -(
availableScrollHeight
* touchFraction));
Completed in 72 milliseconds