Possible Duplicate:
OnTouch in MapView only fires the first time
I want to detect every touch made by the user to the map and hence I have registered a listener for an instance of MapView. However, this listener only get called once, after that I need to close the application if I want it to work again. I am using OsmDroid.
mMapView = (MapView) findViewById(R.id.mapview);
mMapView.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
System.out.println("OnTouch MapView Listener!");
return false;
}
});