27Mar/100
Quick android tips
To hide window title in onCreate() of activity do the
requestWindowFeature(Window.FEATURE_NO_TITLE);To hide system statusbar (the thing with battery status) do the following in the onCreate() method:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
This should be made before setting any content.