-
public interface ItemizedIconOverlay.OnItemGestureListener<T>When the item is touched one of these methods may be invoked depending on the type of touch.
Each of them returns true if the event was completely handled.
-
-
Method Summary
Modifier and Type Method Description abstract booleanonItemSingleTapUp(int index, T item)abstract booleanonItemLongPress(int index, T item)-
-
Method Detail
-
onItemSingleTapUp
abstract boolean onItemSingleTapUp(int index, T item)
-
onItemLongPress
abstract boolean onItemLongPress(int index, T item)
-
-
-
-