AI-generated Key Takeaways
-
GoogleMap.OnInfoWindowCloseListeneris a callback interface for handling close events on a marker's info window. -
The interface has one abstract method,
onInfoWindowClose, which is called when a marker's info window is closed. -
The
onInfoWindowClosemethod is called on the Android UI thread. -
The
onInfoWindowClosemethod receives theMarkerobject for which the info window was closed.
Callback interface for close events on a marker's info window.
Public Method Summary
| abstract void |
Public Methods
public abstract void onInfoWindowClose (Marker marker)
Called when the marker's info window is closed.
This is called on the Android UI thread.
Parameters
| marker | The marker of the info window that was closed. |
|---|