Possible Duplicate:
How to implement doubletap on imageview’s onclick?
In my application I have a Relative layout with three image views.
In the activity I have implemented the simplegesturelistener for getting the swipe to work. Because of this i had to override the onDoubleTap method as well.
My problem is that I want to use the double tap event to zoom out the image from the image view on which the double tap happened (Need to recognize one of the three image views on the layout).
Is there a way to achieve this in the current scenario?