android-target-tooltip icon indicating copy to clipboard operation
android-target-tooltip copied to clipboard

How to reshow a tooltip?

Open splitbrain opened this issue 10 years ago • 1 comments

Saving a reference to the Builder object returned by create() and calling show() multiple times on it seems not to work? What's the proper way to use a tooltip multiple times?

splitbrain avatar May 06 '15 14:05 splitbrain

I used to store reference to the tooltip, and if I want to show it again, simply

if(tooltip!=null && tooltip.isShown()){
     tooltip.hide();
}
tooltip = //create and show again

Marchuck avatar Sep 27 '18 13:09 Marchuck