compile 'com.android.support:design:22.2.0'
Snackbar, show a quick message to the user
Floating action buttons are used for a promoted action.
The new TextInputLayout allows us to wrap EditText views in order to display floating labels above the EditText field.
The navigation drawer slides in from the left. It is a common pattern found in Google apps and follows the keylines and metrics for lists.
TabLayout provides a horizontal layout to display tabs.
The CoordinatorLayout builds on-top of the motion effects already provided by adding the ability to transition views based on the motion of others.
We are able to link our FloatingActionButton to our Snackbar so that when the bar is shown it pushes the FAB up, rather than overlapping it.
The CoordinatorLayout lets us adapt our layouts based on different scroll events that may take place, allowing us to alter the appearance of our views (such as the Toolbar) when the user scrolls the content on the screen.
You can now wrap a Toolbar component with the new CollapsingToolbarLayout, which allows the layout to collapse as the user scrolls the screens content