According to the new Android Design Guidelines for the Floating Action Button, it should be reasonable to transform the Floating Action Button into a Toolbar.
Are there any samples / examples to perform such a transformation?
According to the new Android Design Guidelines for the Floating Action Button, it should be reasonable to transform the Floating Action Button into a Toolbar.
Are there any samples / examples to perform such a transformation?
Looks to me like a Circular Reveal Animation which uncovers a custom Toolbar.
To use reveal animation you need add a onLayoutChange listener to the view in onCreateView callback like this:
where the revealView() method will be:
In this way you should be able to create your animation. This is the way to use it. Just apply this at your fab onClick() method