Android Development Notes
From Wiki³
Hiding the Activity Titlebar
public void onCreate(Bundle savedInstanceState) {
//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
//Launch the Main layout
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}