Calendar icon indicating copy to clipboard operation
Calendar copied to clipboard

非常不错,偶尔点击有点问题

Open senlinxuefeng opened this issue 8 years ago • 1 comments

senlinxuefeng avatar Dec 23 '16 03:12 senlinxuefeng

public boolean onTouchEvent(MotionEvent event) { int action = event.getAction(); int x = (int) event.getX(); int y = (int) event.getY(); switch (action) { case MotionEvent.ACTION_UP: doClickAction(x, y); break; default: break; } return true; }

取消手势监听,直接在onTouchEvent里这样写就可以了,onSingleTapUp好像有防抖动检测

chocolatezhu avatar Mar 29 '17 09:03 chocolatezhu