Double click event in android
问题 How to implement double click event in android without using gesturedetector? 回答1: If you mean double tap you have to use GestureDetector.OnDoubleTapListener. 回答2: I'm sure all the code there does is determine if the second click was within a certain time of the first click, otherwise treat it as a second click. That's how I would do it anyway. 回答3: just use setOnTouchListener to record the first and second click time. If they are very close, determine it as a double click. Like this, public