Despite there being enough space in the action bar , only the icon is being displayed, even when I am using
app:showAsAction= "always|withText" 
Full code:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="com.ishaan.admin.notify.Profile">
    <item android:id="@+id/action_logout"
        android:title="Logout"
        android:icon="@drawable/logout_icon"
        app:showAsAction= "always|withText"  />
</menu>
 
     
     
    