Android tooltips can be defined in the layout and are displayed when clicking or hoovering over the button.
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:tooltipText="Send an email" />
Is there a way to Show/hide tooltips programmaticaly such as
myFabButton.showToolTip();
myFabButton.HideToolTip();
I would like to have a help button that would show/hide all tooltips.