I am trying to achieve the following with no success.I have two material design swipe tabs.I used this library 'com.oguzdev:CircularFloatingActionMenu:1.0.2' to achieve FAB but when i swipe the tab to the second tab,the FAB is still attached to the new fragment.
I would like to hide the FAB on the second Fragment. Is there a way to achieve this?
It seems like this library assumes that you want to attach the FAB to your activity. The layout params that it generates also seems to assume that the parent is a
FrameLayout
. It is a little bit hacky, but you can detach it and reattach it where you want after youbuild()
it.