I\'m trying to implement a double-tap zoom like function in my MapView. The event always fires the first time, but never subsequent times. Below is my code. I have a feeling
Implement the Touch event on the map view instead. That will work!!
// The onTouch event of the Map itself does not fire!
// We must implement it on the mapView!!!
mapView.setOnTouchListener(new OnTouchListener()
{
public boolean onTouch(View v, MotionEvent event)
{
// Your code and remember to return true!
return (true);
}
});