Skip to content

Instantly share code, notes, and snippets.

@tediscript
Created May 23, 2013 06:34
Show Gist options
  • Save tediscript/5633120 to your computer and use it in GitHub Desktop.
Save tediscript/5633120 to your computer and use it in GitHub Desktop.
public class FullScreen extends Activity {
@Override
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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment