Skip to content

Releases: dofire/Floating-Bubble-View

FloatingBubbleView v0.5.0

18 Mar 16:37
db910c3
Compare
Choose a tag to compare

NEW:
setupBubble:

  • .behavior( BubbleBehavior ): choose behavior for the bubbles
  • .closablePerimeter( Int ): the more value, the bigger closable-area

CHANGE:
setupExpandableView:

  • .expandableView(...) -> .view(...)

FloatingBubbleView v0.4.3

06 Mar 10:27
409f43b
Compare
Choose a tag to compare

FIX: ✔

  • the service does not stop in some cases even when the bubble already inside the closable-area

OTHER:

  • update demo video in README.md, which is displayed incorrectly on some browser (Edge in my case)

FloatingBubbleView v0.4.2

06 Mar 07:58
Compare
Choose a tag to compare

NEW: ⭐

  • add documentations on each API using dokka

FIX: ✔

  • when the close-bubble size is bigger/smaller than bubble (eg: 80dp vs 60dp), the closable area will be slightly moved to the left.

FloatingBubbleView v0.4.0

02 Feb 07:09
63d5119
Compare
Choose a tag to compare

New:

1, Change function name:

  • setBubble() -> bubble()
  • setBubbleStyle() -> bubbleStyle()
  • setCloseBubble() -> closeBubble()
  • setBubbleSizeDp(), setCloseBubbleSizeDp-> pass attributes to bubble(), closeBubble() directly
  • setStartPoint() -> startLocation()
  • addFloatingBubbleTouchListener(new FloatingBubble.TouchEvent()...) -> addFloatingBubbleListener(new FloatingBubble.Listener()... )
  • setAlpha() -> opacity()
  • ...

2, Fix compile bugs:

  • fix project not compile on sdk 33

3, Add default permissions:
these two permission are added to library manifest file:

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>

4, Update documentation