menubar - How to remove android menu bar? -
here add screen shot of application, want hide menu bar below screen. how can ? plz help
you need specifiy targetsdkversion in manifest higher or equal android 3.0 button disappears (instead optionsmenu entries - if - shown in actionbar):
<uses-sdk android:minsdkversion="8" android:targetsdkversion="17"/>
if want hide complete navigation bar (including "back", "home" etc) can this code:
getwindow().getdecorview().setsystemuivisibility(view.system_ui_flag_hide_navigation);
but user taps screen visible again.
Comments
Post a Comment