Skip to content

How to have multiple gravity to the tooltip? #139

@tipialican

Description

@tipialican

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions