Ejemplo n.º 1
0
 @Override
 public boolean onTouchEvent(MotionEvent event) {
   boolean handled = false;
   for (MapControl ctrl : controls) {
     handled = ctrl.onTouchEvent(event, this) || handled;
   }
   return handled;
 }