Balloon v1.1.8 Release Notes

Release Date: 2020-06-16 // almost 4 years ago
  • ๐Ÿš€ ๐ŸŽ‰ Released a new version 1.1.8! ๐ŸŽ‰

    What's New?

    • Option to have arrow point at (center of) anchor view (#47, #61, #58)

    We can now determine the constraints of the arrow positioning using the ArrowConstraints.
    0๏ธโƒฃ The default constraint is still ALIGN_BALLOON, we can change the ArrowConstraints using the
    setArrowConstraints method.

    // Aligning arrow based on the anchor view. // if an arrowPosition is 0.5, the arrow will be positioned center of the anchor view..setArrowConstraints(ArrowConstraints.ALIGN\_ANCHOR)// Aligning arrow based on the balloon popup.// if an arrowPosition is 0.5, the arrow will be positioned center of the balloon popup..setArrowConstraints(ArrowConstraints.ALIGN\_BALLOON) // default
    

    ๐Ÿ‘‰ Make setDismissWhenTouchOutside option makes focusable false (#53)

    โž• Add support for setting text with HTML (#54)
    If the setTextIsHtml is true, we can set text with HTML tags using TextForm.

    Setter for custom layout view instead of resource (#59)
    Now we can set a layout as an instance of a view dynamically, not from resource layout.

    FragmentBalloonLazy uses viewLifecycleOwner instead of the fragmentLifecycleOwner.