What is the difference between Action Bar and newly introduced Toolbar?

AndroidAndroid ActionbarMaterial DesignAndroid Toolbar

Android Problem Overview


After Google introduced Material Design, I have heard about a new widget class called Toolbar.

What is the Toolbar, and what is the exact difference between ActionBar and ToolBar?

Android Solutions


Solution 1 - Android

I found a good explanation from Android Developers Blog post.

> In this release, Android introduces a new Toolbar widget. This is a generalization of the Action Bar pattern that gives you much more control and flexibility. Toolbar is a view in your hierarchy just like any other, making it easier to interleave with the rest of your views, animate it, and react to scroll events. You can also set it as your Activity’s action bar, meaning that your standard options menu actions will be display within it.

Yes, we, Android developers, needed more control over ActionBar, right? And Toolbar is just for it.

In other words, the ActionBar now became a special kind of Toolbar. This is an excerpt from Google's official Material Design spec document.

> The app bar, formerly known as the action bar in Android, is a special kind of toolbar that’s used for branding, navigation, search, and actions.

More details like how to use Toolbar as an ActionBar are included in above blog post.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Question김준호View Question on Stackoverflow
Solution 1 - Android김준호View Answer on Stackoverflow