I want to know if you can perform the setOnMarkerClickListener
method, but perform the scheduled task on the second click.
googleMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(Marker marker) {
}
});
EJ: I have a google maps marker, which shows information, I want to press once to show the information, and if you pressed twice I sent to an activity that I already have created.