Описание тега android-actionbar
The action bar is a window feature at the top of the activity that may display the activity title, navigation modes, and other interactive items.
You should use the action bar in most activities that need to prominently present user actions or global navigation, because the action bar offers users a consistent interface across applications and the system gracefully adapts the action bar's appearance for different screen configurations. You can control the behaviors and visibility of the action bar with the ActionBar APIs, which were added in Android 3.0 (API level 11) but support library as well as various independent libraries provide the ActionBar for lower API versions.
With android 5.0, a new design, called Material Design, replace the ActionBar by a new element, Toolbar.
References