在Android中的View中添加双击侦听器

时间:2017-07-29 03:01:53

标签: java android android-edittext listener

我正在尝试在TextView上添加双击侦听器。我知道我可能不得不使用GestureDetector,但我不确定你是怎么做到的。

1 个答案:

答案 0 :(得分:1)

试试这个

// Instantiate the gesture detector with the
        // application context and an implementation of
        // GestureDetector.OnGestureListener
        mDetector = new GestureDetectorCompat(this,this);
        // Set the gesture detector as the double tap
        // listener.
        mDetector.setOnDoubleTapListener(this);

或使用给定的链接。

http://www.techotopia.com/index.php/Detecting_Common_Gestures_using_the_Android_Gesture_Detector_Class