I'm building a new map activity. User can add a custom location by long pressing on the map.
I add a new overlay, which implement "OnGestureListener". It works, but not perfect. When user use two finger to zoom the map, the onLongPressed() is also be fired, which is not expected.
After that, I modified my code. like:
public class LongPressItemizedOverlay extends ItemizedOverlay<OverlayItem>implements OnGestureListener
private GestureDetector gestureScanner = new GestureDetector(this);
@Override
public boolean onTouchEvent(MotionEvent event, MapView view) {
return gestureScanner.onTouchEvent(event);
}
@Override
public void onLongPress(MotionEvent e) {
//ignore two or more point
if(e.getPointerCount() > 1)
return;
// TODO Auto-generated method stub
// Get X and Y
}
I worked full day to solve this, but the "e.getPointerCount()" always return 1 not 2. What should I do? I don't know why.