In this tutorial, we will learn to create a collapsing toolbar layout that was introduced with Design Support library . Before starting anything, let's check for the new layouts that were introduced with design library :.
ReadAndroid Toolbar was introduced with Android Lollipop (API 21) .Toolbar can be used as a replacement for for android ActionBar. Toolbar was designed for Lollipop devices, but we can use it on Pre-Lollipop devices using google's AppCompat library. android.support.v7.widget.Toolbar class is used to implement ToolBar in this library.
Read