Home
last modified time | relevance | path

Searched refs:mBgBounds (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DBaseRecyclerViewFastScrollPopup.java39 private Rect mBgBounds = new Rect(); field in BaseRecyclerViewFastScrollPopup
81 mInvalidateRect.set(mBgBounds); in updateFastScrollerBounds()
90 mBgBounds.left = mRv.getBackgroundPadding().left + (2 * mRv.getMaxScrollbarWidth()); in updateFastScrollerBounds()
91 mBgBounds.right = mBgBounds.left + bgWidth; in updateFastScrollerBounds()
93 mBgBounds.right = mRv.getWidth() - mRv.getBackgroundPadding().right - in updateFastScrollerBounds()
95 mBgBounds.left = mBgBounds.right - bgWidth; in updateFastScrollerBounds()
97 mBgBounds.top = lastTouchY - (int) (FAST_SCROLL_OVERLAY_Y_OFFSET_FACTOR * bgHeight); in updateFastScrollerBounds()
98 mBgBounds.top = Math.max(edgePadding, in updateFastScrollerBounds()
99 Math.min(mBgBounds.top, mRv.getHeight() - edgePadding - bgHeight)); in updateFastScrollerBounds()
100 mBgBounds.bottom = mBgBounds.top + bgHeight; in updateFastScrollerBounds()
[all …]