I have an icon that I want to display with some text in my action bar. However, no matter what I do (change text to display always, have the text be a single letter so there's definitely room, etc) I can't get both to display (the icon always displays fine), but only on xhdpi screens. If I run it on 240dpi or lower it displays both. I've read in googling that text not being displayed with the icon was a bug in ICS, but I'm testing on API 19. Is there a solution to this? thanks
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_dafuq"
android:icon="@drawable/dafuq"
android:title="@string/dafuq"
android:showAsAction="ifRoom|withText" />
</menu>