Skip to content Skip to sidebar Skip to footer

Android 3.0 Statusbar & Targetsdkversion In Manifest, Menu Button

I needed to dim Honeycomb's status bar on some screens of my app, so I used the View.setSystemUiVisibility(int) method. But in order for it to work I've changed the targetSdkVersio

Solution 1:

How do I show it while keeping targetSdkVersion=11?

You don't. Your menu will appear in your action bar. If you removed the action bar, put it back, or do not use an options menu.

Post a Comment for "Android 3.0 Statusbar & Targetsdkversion In Manifest, Menu Button"