Balloon v1.0.7 Release Notes

Release Date: 2019-12-25 // over 4 years ago
  • ๐Ÿš€ Released version 1.0.7.

    ๐Ÿ”‹ Features :

    We can show balloon popup sequentially using relayShow method.
    The relayShow method makes that setOnDismissListener of the first balloon is reset to show the
    next balloon and returns an instance of the next balloon.

    customListBalloon .relayShowAlignBottom(customProfileBalloon, circleImageView) // relay to customListBalloon .relayShowAlignTop(customTagBalloon, bottomNavigationView, 130, 0) // relay to customProfileBalloon// show sequentially customListBalloon-customProfileBalloon-customTagBallooncustomListBalloon.showAlignBottom(toolbar\_list)
    
    • ๐Ÿ‘Œ Support for XML animations (#10)

    ๐Ÿ’… We can set animation custom xml style using setBalloonAnimationStyle method.

    \<style name="ElasticAndFadeOut"\> \<item name="android:windowEnterAnimation"\>@anim/elastic\_center\</item\> \<item name="android:windowExitAnimation"\>@anim/fade\_out\</item\> \</style\>
    
    setBalloonAnimationStyle(R.style.ElasticAndFadeOut)