android-target-tooltip
android-target-tooltip copied to clipboard
How to reshow a tooltip?
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?
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