Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an action bar in my app with 3 items.

Only 2 can be displayed due to space issues, so I'd expect the first to be displayed and the rest to be displayed in the overflow. However in practice only the first 2 items are shown and there is no overflow detectable.

Here is the relevant code: list_menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/menu_insert"
    android:icon="@android:drawable/ic_menu_add"
    android:title="@string/menu_insert" 
    android:showAsAction="ifRoom|withText"/>
<item android:id="@+id/menu_call"
    android:icon="@android:drawable/ic_menu_call"
    android:title="@string/menu_call" 
    android:showAsAction="ifRoom|withText"/>
<item android:id="@+id/menu_agenda"
    android:icon="@android:drawable/ic_menu_agenda"
    android:title="@string/menu_agenda" 
    android:showAsAction="ifRoom|withText"/>
</menu>

Activity.java

public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater mi = getMenuInflater();
    mi.inflate(R.menu.list_menu, menu);
    return true;
}

Thanks!

share|improve this question
15  
If your device has a menu-button, the overflow-icon won't show. What device are you on? – Reinier Mar 16 '12 at 15:12
the virtual device i'm testing on has a menu button indeed, clicked it and the missing item showed up, thanks! – Mats Raemen Mar 16 '12 at 15:48
@Reinier I'm using ActionBarSherlock. On Galaxy Ace running 2.3 it is shown, on Galaxy SII running 4.0 it is not shown. Both have HW menu button. – Mister Smith Oct 26 '12 at 11:26

4 Answers

If you want to show the three dots, irrespective of device menu button! then you can call this method in your application class' onCreate method-

private void getOverflowMenu() {

     try {
        ViewConfiguration config = ViewConfiguration.get(this);
        Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
        if(menuKeyField != null) {
            menuKeyField.setAccessible(true);
            menuKeyField.setBoolean(config, false);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}
share|improve this answer
2  
Very useful, thanks – JesperB Nov 16 '12 at 10:25
4  
This is an awful hack that breaks consistency with the rest of the apps on the platform. Do not do this. – adamp Jan 10 at 18:12
1  
This seems like the lesser of two evils. The current behavior is unacceptable. – biorbnA Mar 28 at 3:00
I'm new to Android, and quite appalled that this hack is necessary :-(. However, I see no alternative but to use it! Many thanks to @Kaushik for revealing it :-). – Stochastically Apr 17 at 22:30
It's a great way to allow to have overflow, the menu hard key should no longer be tolerated. – Necronet May 5 at 23:18
show 1 more comment

On devices with hardware menu buttons (Galaxy S3, stubborn as Samsung is...) the overflow menu behaves as the 'traditional' menu, by using the hardware menu button.

share|improve this answer

I realize this is not an overflow menu, but it is similar. Okay, this is simple but was hard to figure out.

You first need a menu item you want to use as the overflow inflater. Example

<item
        android:id="@+id/a_More"
        android:icon="@drawable/more"
        android:showAsAction="always"
        android:title="More">
        </item>

Once you have your item, add a sub-menu containing your items you want in the overflow menu. Example:

<item
    android:id="@+id/a_More"
    android:icon="@drawable/more"
    android:showAsAction="always"
    android:title="More">
    <menu>
        <item
            android:id="@+id/aM_Home"
            android:icon="@drawable/home"
            android:title="Home"/>
    </menu>
</item>

On click this will inflate other items within. My application is using ActionBarSherlock 4.0 so before this will work for you, you will need to access the "SplitActionBar". (Will still work on default android Actionbar)

Here's how: In your AndroidManifest.xml file, you need to add this code under the activity you need the overflow menu in.

android:uiOptions="splitActionBarWhenNarrow"

NOTE: Your item that inflates your overflow menu MUST showAsAction="always"

Vwola! you have an overflow menu! Hope I helped you out. :)

share|improve this answer

When you say "overflow" menu, do you mean the three dots that show up in the end to indicate that there are more items.... or do you mean the split actionbar that shows up in the bottom for overflow items?

If you mean the split action bar, you should add this to your activity's manifest file

android:uiOptions="splitActionBarWhenNarrow"

By default, the three dots overflow menu should happen automatically, so it's hard to tell what the problem is from the information you provided above.

share|improve this answer
I do mean the three dots. It's not like it's because of the items, because whenever changing items of order, it's the first 2 icons that are shown – Mats Raemen Mar 16 '12 at 14:58
should I provide extra information to be able to determine the actual problem? – Mats Raemen Mar 16 '12 at 15:10
What are your minSdkVersion, targetSdkVersion, and the version you are testing on? – Sparky Mar 16 '12 at 15:20
they are all version 15 – Mats Raemen Mar 16 '12 at 15:21
4  
Does your device have physical buttons for menu or are they virtual buttons like the galaxy nexus phone? I think the three dots will only show up if your phone doesn't have physical buttons. – wnafee Mar 16 '12 at 15:30

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.