android - How to disable notification bar and status bar on lock screen? -


i have tried following code still not work me.

requestwindowfeature(window.feature_no_title);         getwindow().setflags(windowmanager.layoutparams.flag_fullscreen,                 windowmanager.layoutparams.flag_fullscreen); 

you may try following,

view view = getwindow().getdecorview();  // hide status bar int uioptions = view.system_ui_flag_fullscreen; view.setsystemuivisibility(uioptions);  // hide actionbar actionbar actionbar = getactionbar(); actionbar.hide(); 

or add style in manifest,

android:theme="@android:style/theme.holo.noactionbar.fullscreen"  

Comments

Popular posts from this blog

python - jinja2: TemplateSyntaxError: expected token ',', got 'string' -

Qt4: how to send QString inside a struct via QSharedMemory -

node.js - NodeJS remote terminal to Dropbear OpenWRT-Server -