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

Popular posts from this blog

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -