Android full screen theme for ICS and above -
what android theme should used if want full screen activities white backgrounds running on devices supporting api 14+?
try in oncreate
public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); requestwindowfeature(window.feature_no_title); getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen); setcontentview(r.layout.main); }
Comments
Post a Comment