I am quite new to android. I was learning the use of GestureDetector and wasnt able to understand the use of the following snippet in the code-
public boolean onTouchEvent(MotionEvent event) {
if (mGestureDetector.onTouchEvent(event))
return true;
else
return false;
}
Please tell me the relevance of the above code. The snippet is from this website- http://www.tutorialforandroid.com/2009/06/implement-gesturedetector-in-android.html Thanks in advance.