hello I have a menu in the action bar that is as follows:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:appcompat="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/menu_search"
android:title="Buscar"
appcompat:actionViewClass="android.support.v7.widget.SearchView"
appcompat:showAsAction="always" />
<item
android:id="@+id/favorita"
android:title="Favorito"
android:icon="@drawable/ic_no_favorito"
appcompat:showAsAction="always" />
<item
android:id="@+id/nota"
android:title="Nota"
android:icon="@drawable/ic_mode_comment_white_18dp"
appcompat:showAsAction="always" />
<item
android:id="@+id/editar"
android:title="Editar"
android:icon="@drawable/ic_action_edit_white"
appcompat:showAsAction="ifRoom" />
<item
android:id="@+id/enviar"
android:title="Enviar"
android:icon="@drawable/ic_share_white_18dp"
appcompat:showAsAction="ifRoom" />
<item
android:id="@+id/donde_estoy"
android:icon="@drawable/ic_place_white_18dp"
android:title="¿Dónde estoy?"
appcompat:showAsAction="ifRoom" />
</menu>
but then when I have the horizontal phone does not show the icons that have the property showAsAction="ifRoom" ..... look at the photo: see how there is space and even then there are three hidden menus ...