Appolica / InteractiveInfoWindowAndroid

Library project, developed and maintained by Appolica, offering an interactive info window for Google maps on Android.
249 stars 56 forks source link

Hide Animation. #44

Closed leonardogazio closed 3 years ago

leonardogazio commented 5 years ago

No way to disable hide animation?

dpetrov-appolica commented 3 years ago

If you want to hide the info window without animation you can do it like this:

@Override
    public void onWindowHideStarted(@NonNull InfoWindow infoWindow) {
        infoWindowManager.hide(infoWindow, false);
}