How To Get Click Event Of Futuresimple Library's Floatactionbutton?
I am using this library this library.I used the code described in its description on github. looks like this I have event for the menu buttons, not its main Button. i want to get i
Solution 1:
and the answer is .
floatingActionsMenu.setOnFloatingActionsMenuUpdateListener(new FloatingActionsMenu.OnFloatingActionsMenuUpdateListener() {
@Override
public void onMenuExpanded() {
Toast.makeText(Launcher.this, "Fdf", Toast.LENGTH_LONG).show();
}
@Override
public void onMenuCollapsed() {
}
});
Post a Comment for "How To Get Click Event Of Futuresimple Library's Floatactionbutton?"