FABsMenu Versions Save

A simple library to use a menu of FloatingActionButtons from Design Support Library that follow Material Design Guidelines

1.1.4

6 years ago
  • Updated to support library 27.1.0
  • Minor fixes

1.1.3

6 years ago

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

1.1.2

6 years ago
  • 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

1.1.1

6 years ago
  • Fixed RTL
  • Fixed labels coloring

Thanks to @G00fY2 for the help :D bitmoji

1.1.0

6 years ago
  • Updated Gradle Plugin
  • Updated Build Tools
  • Updated Android Support Libraries

1.0.9

6 years ago
  • Lower min sdk to 14

1.0.8

6 years ago
  • 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);

1.0.7

6 years ago
  • Deprecated setMenuUpdateListener(FABsMenuListener) in favor of setMenuListener(FABsMenuListener)

1.0.6

6 years ago

Add support for Snackbars by moving FABsMenu when they are shown

1.0.5

6 years ago
  • 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