I have an app that uses android:minSdkVersion="7" and android:targetSdkVersion="10". Is it possible to hide the option menu button that is on screen on ICS (api level 14)?

Some of the activities may use the option menu, but not all. It would be great to show/hide the option menu button to make it more intuitive for the user where he/she can expect to find more functionality.

link|improve this question

20% accept rate
feedback

3 Answers

Return false from onCreateOptionsMenu(Menu) and it won't show the menu button on ICS.

link|improve this answer
4  
I tried out this out now. It does not matter what this method returns, but the android:targetSdkVersion affected it showing or not. If I don't use a targetSdkVersion, or if it set to 13 or lower the system menu button is displayed no matter what. If I set it to 14 or higher it's gone no matter what. I guess the last bit must be a bug. Anyways, I would like to keep targetSdkVersion at 10, so maybe the answer is 'no' to my original question. – RoyS Dec 22 '11 at 11:59
Are you turning meny items on and off? It's only called once so if you need to enable/disable dynamically there's a different method. – Hounshell Dec 22 '11 at 14:59
This is the first time the activity is created. And it's in an activity where I don't want to that the menu button to be visible as it doesn't give the user any options. – RoyS Dec 22 '11 at 15:45
feedback

How about increasing targetSdkVersion to 11 (or even 15)? According to the Android CDD that cut off for legacy Menu button is version > 10.

link|improve this answer
feedback

If it is your button then you can check the version of Android and hide this button according to the version (http://developer.android.com/reference/android/os/Build.VERSION.html)

link|improve this answer
This is the system's option menu button. I'm asking about ICS because this button has been a hardware feature in the earlier versions. – RoyS Dec 22 '11 at 9:30
I've somewhere read that you cannot hide the panel with buttons in ICS. – Yury Dec 22 '11 at 9:50
Yes, that is true. But the Galaxy Nexus (running ICS) hides the option menu button on the home screen (and still displays back, home, task switcher). So I was hoping to be able to hide it myself when there's no use for it. – RoyS Dec 22 '11 at 10:03
feedback

Your Answer

 
or
required, but never shown

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