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

php - Hide output during test execution -

javascript - Migrate custom AngularJS filter from 1.2.28 to 1.4.x -

Update Magento products with multiple images -