Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/menu_settings"
    android:icon="@drawable/ic_launcher"
    android:title="One"
    android:orderInCategory="0"
    android:showAsAction="ifRoom" >
    <menu>
        <item android:id="@+id/subItem1"
                android:title="sub 1" />
        <item android:id="@+id/subItem2"
                android:title="sub 2" />
    </menu>
 </item>

I want an icon and title for one of my menu tabs but only the icon shows up, where am I going wrong?

share|improve this question

2 Answers

up vote 2 down vote accepted

You should add withText :

android:showAsAction="ifRoom|withText"

However, it's only a hint and there's no guarantee that your tab will display the text. It depends on the device screen size.

share|improve this answer

As far as I know in portrait mode the text will always be hidden.

You might try removing the title of the actionbar and see if this helps.

Try landscape, there you should see icon and text.

share|improve this answer
How do I remove the title of the action bar? – user1013512 Aug 2 '12 at 10:50
You could set an empty one. Default is the application name, so overwrite it. Have you tried landscape? Do you see the text there? – WarrenFaith Aug 2 '12 at 10:59
I've made the app name blank and tried it in landscape, still no luck. – user1013512 Aug 2 '12 at 11:03
Could you provide a small screenshot and could you change "ifRoom" to "always" just for testing? – WarrenFaith Aug 2 '12 at 11:12
How would I upload the screenshot? I've tried always, no luck. – user1013512 Aug 2 '12 at 11:13
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.