menubar - How to remove android menu bar? -


here add screen shot of application, want hide menu bar below screen. how can ? plz help

enter image description here

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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -