show
Populates TtPopOver with contentFragment and shows it, using positionRelativeToAnchor to determine the position relative to anchorView.
The optional offsetXRelativeToAnchor and offsetYRelativeToAnchor parameters can be used to adjust the horizontal and vertical positions of the pop over. For example, to prevent the pop over from overlapping particular components on the screen beside anchorView that the pop over has no awareness of.
The pop over could overlap with anchorView when there is not enough space to show the pop over on the requested positionRelativeToAnchor or due to the requested offsets.
If an existing TtPopOver is currently shown, it will be dismissed before the new TtPopOver is shown.
NOTE:
It's only safe to call this method when the parent's lifecycle state is at least Lifecycle.State.STARTED.
Populates TtPopOver with contentFragment and shows it, using positionRelativeToAnchorPriority (must not be empty) to determine the position relative to anchorView.
With the relative positions in positionRelativeToAnchorPriority, this TtPopOver will try to find a position which fits the screen and doesn't overlap with anchorView. If no such position is found, then the first relative position in positionRelativeToAnchorPriority will be used regardless of possible overlap with anchorView. The order of relative positions in positionRelativeToAnchorPriority determines the priority, with the first relative position having the highest priority.
If an existing TtPopOver is currently shown, it will be dismissed before the new TtPopOver is shown.
NOTE:
It's only safe to call this method when the parent's lifecycle state is at least Lifecycle.State.STARTED.
If the size of contentFragment or the size/position of anchorView change after calling this method, the position of the pop over relative to anchorView won't be updated even if the pop over could overlap anchorView.