What is the difference between GestureDetector Class and the GestureDetectorCompat class? Both to do the same thing(deal with gestures) but which one should I use?
GestureDetectorCompat enables your to use all of the GestureDetector capability on old android version. That's all.
So you probably want to use the compat version which has identical APIs.