我正在尝试在TextView
上添加双击侦听器。我知道我可能不得不使用GestureDetector
,但我不确定你是怎么做到的。
答案 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);
或使用给定的链接。