Closed skauss closed 4 years ago
Hi, @skauss thank you for your issue :)
What attribute did you use for giving a delay to the balloon?
It seems you used Handler
with postDelayed
.
Hi skydoves, yes I do final Handler handler = new Handler(); handler.postDelayed(() -> balloon.showAlignTop(anchor), 500);
@skauss
Ah, then you should cancel the runnable of the handler when onPause
is called.
https://stackoverflow.com/questions/4378533/cancelling-a-handler-postdelayed-process
Hi, we use the Balloon library to show tooltips. The balloon is shown with a little delay of 500ms. In Firebase Crashlytics I found some crashes while showing the balloon.
It look's like the user press the back button instantly while the balloon is showing.
This is happens also for
It would be great if you catch this exception
Regards Stephan