-
Notifications
You must be signed in to change notification settings - Fork 278
Open
Description
I am trying to place a tooltip to the bottom-right of a view, which happens to be at the right most side of the screen.
However, not using fitToScreen ends up with tooltip being outside of the screen, where an xOffset needs to be set, however this offset is not very reliable since the text can change in the tooltip.
Using fitToScreen also ends up creating a problem where tooltip automatically is set to Gravity.LEFT since bottom is not an option ( because it tries to draw it outside of the screen )
Here is a piece of code:
val width = resources.displayMetrics.widthPixels * 2 / 3
val tooltipPaddingRight = resources.getDimensionPixelSize(R.dimen.tooltip_margin_right)
val tooltip = Tooltip.Builder(requireContext())
.anchor(imageViewAction,-width / 2 + tooltipPaddingRight,0, false)
.text("Tooltip message here")
.maxWidth(width)
.arrow(false)
.styleId(R.style.SomeStyle)
.showDuration(3000)
.closePolicy(ClosePolicy.TOUCH_ANYWHERE_NO_CONSUME)
.overlay(false)
.create()
tooltip.show(plusButton, Tooltip.Gravity.BOTTOM,true)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels