Searched refs:evX (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/ |
D | RecentsViewTouchHandler.java | 206 float evX = ev.getX(); in handleTouchEvent() local 210 mDownPos.set((int) evX, (int) evY); in handleTouchEvent() 213 if (isWithinStackActionButton(evX, evY)) { in handleTouchEvent() 214 changeStackActionButtonDrawableHotspot(evX, evY); in handleTouchEvent() 219 float x = evX - mTaskViewOffset.x; in handleTouchEvent() 222 if (mRv.getStackActionButton().isPressed() && isWithinStackActionButton(evX, evY)) { in handleTouchEvent() 223 changeStackActionButtonDrawableHotspot(evX, evY); in handleTouchEvent() 228 mIsDragging = Math.hypot(evX - mDownPos.x, evY - mDownPos.y) > mDragSlop; in handleTouchEvent() 238 if (mLastDropTarget.acceptsDrop((int) evX, (int) evY, width, height, in handleTouchEvent() 247 if (target.acceptsDrop((int) evX, (int) evY, width, height, in handleTouchEvent() [all …]
|