在GestureDetector中使用onTouchEvent

时间:2012-02-03 20:38:35

标签: android gesturedetector

我对android很新。我正在学习使用GestureDetector并且无法理解代码中以下代码段的使用 -

public boolean onTouchEvent(MotionEvent event) {  
  if (mGestureDetector.onTouchEvent(event))  
    return true;  
  else  
    return false;  
}

请告诉我上述代码的相关性。 该片段来自这个网站 - http://www.tutorialforandroid.com/2009/06/implement-gesturedetector-in-android.html 提前谢谢。

1 个答案:

答案 0 :(得分:2)

这很简单,我们使用它来传递MotionEvent以执行其他功能。因为GestureDetector中的所有功能都是通过触摸执行的。