0
我想在TextView
上添加雙擊監聽器。我知道我可能不得不使用GestureDetector
,但我不確定你是如何做到的。在Android中添加一個雙擊監聽器視圖
我想在TextView
上添加雙擊監聽器。我知道我可能不得不使用GestureDetector
,但我不確定你是如何做到的。在Android中添加一個雙擊監聽器視圖
試試這個
// 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);
或使用給定的鏈接。
在活動中添加了手勢檢測器。我正試圖在TextView上添加它 – Eddie