Lines Matching refs:ev
115 public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent ev) { in onInterceptTouchEvent() argument
116 return handleTouchEvent(ev); in onInterceptTouchEvent()
120 public void onTouchEvent(RecyclerView rv, MotionEvent ev) { in onTouchEvent() argument
121 handleTouchEvent(ev); in onTouchEvent()
128 private boolean handleTouchEvent(MotionEvent ev) { in handleTouchEvent() argument
129 int action = ev.getAction(); in handleTouchEvent()
130 int x = (int) ev.getX(); in handleTouchEvent()
131 int y = (int) ev.getY(); in handleTouchEvent()
137 if (shouldStopScroll(ev)) { in handleTouchEvent()
140 mScrollbar.handleTouchEvent(ev, mDownX, mDownY, mLastY); in handleTouchEvent()
144 mScrollbar.handleTouchEvent(ev, mDownX, mDownY, mLastY); in handleTouchEvent()
149 mScrollbar.handleTouchEvent(ev, mDownX, mDownY, mLastY); in handleTouchEvent()
162 protected boolean shouldStopScroll(MotionEvent ev) { in shouldStopScroll() argument
163 if (ev.getAction() == MotionEvent.ACTION_DOWN) { in shouldStopScroll()