I am trying to make this from the material design guidelines:
Could you tell me how to morph the fab into the desired view?
I am trying to make this from the material design guidelines:
Could you tell me how to morph the fab into the desired view?
You can split the task into two steps
Add the FAB to your XML layout. In the onClick method you can inflate a PopMenu, as shown here https://www.tutlane.com/tutorial/android/android-popup-menu-with-examples
PopupMenu popup = new PopupMenu(this, fab);
MenuInflater inflater = popup.getMenuInflater();
inflater.inflate(R.menu.your_menu, popup.getMenu());
popup.show();
You still need to add some more code to get the animations. Hope this gets you started