TooltipCompat
open class TooltipCompat
kotlin.Any | |
↳ | androidx.appcompat.widget.TooltipCompat |
Helper class used to emulate the behavior of View#setTooltipText(CharSequence)
prior to API level 26.
Summary
Public methods | |
---|---|
open static Unit |
setTooltipText(@NonNull view: View, @Nullable tooltipText: CharSequence?) Sets the tooltip text for the view. |
Public methods
setTooltipText
open static fun setTooltipText(
@NonNull view: View,
@Nullable tooltipText: CharSequence?
): Unit
Sets the tooltip text for the view.
Prior to API 26 this method sets or clears (when tooltip is null) the view's OnLongClickListener and OnHoverListener. A toast-like subpanel will be created on long click or mouse hover.
Parameters | |
---|---|
view |
View: the view to set the tooltip text on |
tooltipText |
CharSequence?: the tooltip text |