Skip to content

Instantly share code, notes, and snippets.

@rjshade
Created February 3, 2010 13:53
Show Gist options
  • Save rjshade/293611 to your computer and use it in GitHub Desktop.
Save rjshade/293611 to your computer and use it in GitHub Desktop.
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);
initComponents();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment