This repository has been archived by the owner on Jul 10, 2020. It is now read-only.
Releases: jahirfiquitiva/FABsMenu
Releases · jahirfiquitiva/FABsMenu
v 1.1.4
v 1.1.3
v 1.1.2
- 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
FloatingActionButton
s 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)
v 1.1.1
v 1.1.0
- Updated Gradle Plugin
- Updated Build Tools
- Updated Android Support Libraries
v 1.0.9
- Lower min sdk to 14
v 1.0.8
- 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
- Deprecated
setMenuUpdateListener(FABsMenuListener)
in favor ofsetMenuListener(FABsMenuListener)
v 1.0.6
Add support for Snackbar
s by moving FABsMenu
when they are shown
v 1.0.5
- Replace
OnFABsMenuUpdateListener
withFABsMenuListener
, 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