Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Possible to hide option menu button on ICS?

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.

like image 471
Roy Solberg Avatar asked Dec 22 '11 08:12

Roy Solberg


1 Answers

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

like image 186
user1076637 Avatar answered Oct 23 '22 23:10

user1076637