Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
H A DTaskbarView.java48 private final Rect mIconLayoutBounds = new Rect(); field in TaskbarView
220 mIconLayoutBounds.right = iconEnd; in onLayout()
221 mIconLayoutBounds.top = (bottom - top - mIconTouchSize) / 2; in onLayout()
222 mIconLayoutBounds.bottom = mIconLayoutBounds.top + mIconTouchSize; in onLayout()
227 child.layout(iconStart, mIconLayoutBounds.top, iconEnd, mIconLayoutBounds.bottom); in onLayout()
230 mIconLayoutBounds.left = iconEnd; in onLayout()
246 if (mIconLayoutBounds.contains((int) event.getX(), (int) event.getY())) { in onTouchEvent()
274 return isShown() && mIconLayoutBounds.contains(xInOurCoordinates, yInOurCoorindates); in isEventOverAnyItem()
278 return mIconLayoutBounds; in getIconLayoutBounds()