Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Releases: jahirfiquitiva/FABsMenu

v 1.1.4

31 Mar 17:58
Compare
Choose a tag to compare
  • Updated to support library 27.1.0
  • Minor fixes

v 1.1.3

31 Mar 00:42
Compare
Choose a tag to compare

Fixes and improvements by @leinardi ... Thanks! :)

v 1.1.2

07 Feb 05:12
Compare
Choose a tag to compare
  • Added a couple new methods to the library. Might be unstable please report any issues if you use them:
    • FABsMenu#addAllButtons(TitleFAB... buttons)
    • FABsMenu#addButton(TitleFAB button, int index)
    • FABsMenu#removeButton(int index)
    • FABsMenu#removeAllButtons()
    • FABsMenu#show()
    • FABsMenu#show(boolean expand)
    • FABsMenu#hide()
    • FABsMenu#hide(boolean expand)
    • FABsMenu#setOverlayColor(@ColorInt int color)
    • FABsMenu#setAnimationDuration(int duration, boolean applyToOverlay)
    • FABsMenuLayout#setAnimationDuration(int duration)
    • FABsMenuLayout#show()
    • FABsMenuLayout#show(boolean immediately)
    • FABsMenuLayout#hide()
    • FABsMenuLayout#hide(boolean immediately)
  • Title click is enabled by default now.
  • The default size of the FloatingActionButtons inside the menu is mini now.
  • Fixed an issue where modifying certain attributes of the MenuButton would not properly update it.
  • Fixed an issue that made the overlay disappear some times.
  • Code cleanup
  • Added support for AboutLibraries
  • Updated sample app (and you can now download it from releases attachments or using this link)

bitmoji

v 1.1.1

02 Jan 00:12
081554d
Compare
Choose a tag to compare
  • Fixed RTL
  • Fixed labels coloring

Thanks to @G00fY2 for the help :D
bitmoji

v 1.1.0

14 Dec 17:01
Compare
Choose a tag to compare
  • Updated Gradle Plugin
  • Updated Build Tools
  • Updated Android Support Libraries

v 1.0.9

10 Sep 17:55
Compare
Choose a tag to compare
  • Lower min sdk to 14

v 1.0.8

10 Sep 17:32
Compare
Choose a tag to compare
  • Fixed an issue that made labels and fabs clickable even when collapsed.
  • Added support for RecyclerView, to make the MenuFAB hide on scroll. Use it like this:
RecyclerView rv = findViewById(R.id.rv);
FABsMenu menu = findViewById(R.id.fabs_menu);
menu.attachToRecyclerView(rv);

v 1.0.7

29 Aug 19:59
Compare
Choose a tag to compare
  • Deprecated setMenuUpdateListener(FABsMenuListener) in favor of setMenuListener(FABsMenuListener)

v 1.0.6

24 Aug 14:21
Compare
Choose a tag to compare

Add support for Snackbars by moving FABsMenu when they are shown

v 1.0.5

22 Aug 23:05
Compare
Choose a tag to compare
  • Replace OnFABsMenuUpdateListener with FABsMenuListener, which is an abstract class, so you don't need to implement all methods, but just the ones you need. It also has a default implementation for the FABsMenu click, to open/close the menu. Thanks for the suggestion @TheAndroidMaster