com.google.android.maps
Interface ItemizedOverlay.OnFocusChangeListener

Enclosing class:
ItemizedOverlay<Item extends OverlayItem>

public static interface ItemizedOverlay.OnFocusChangeListener

Interface for listeners interested in when the focused Item changes.


Method Summary
 void onFocusChanged(ItemizedOverlay overlay, OverlayItem newFocus)
          This will be called during the draw method, so don't do anything here except post a message or the like.
 

Method Detail

onFocusChanged

void onFocusChanged(ItemizedOverlay overlay,
                    OverlayItem newFocus)
This will be called during the draw method, so don't do anything here except post a message or the like.

Parameters:
overlay - the Overlay doing the calling
newFocus - the new focus item, or null if there isn't any.