I have an existing app with a full screen viewer that uses the menu button to show options. I've set the android:targetSdkVersion to be 14 to have the entire app theme look like a native ICS APP.

The problem is that when setting the Activity style to be full screen, I don't have the menu button, and if I show the ActionBar, is takes app too much screen space just to display a menu.

Is there any way of keeping the regular menu button while in full screen on ICS?

link|improve this question
feedback

1 Answer

I suppose there is no way to show only small part of action bar of ICS - at least it will look strange. The best way for you is create somewhere in your app "menu button". If you want to hide this button for phones with hardware menu button there is option to check SDK version: android.os.Build.VERSION.SDK_INT

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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