I'm using ActionBarCompat and have an options menu defined in XML. It looks like this:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/createNew"
app:showAsAction="always|withText"
android:icon="@drawable/ic_action_new"
android:title="@string/createNew" />
</menu>
The icon appears in the actionbar, but without text! How can I get the text showing? What did I do wrong?
Thank you in advance!