[android] Full Screen


/ Published in: Java
Save to your folder(s)



Copy this code and paste it in your HTML
  1. @Override
  2. public void onCreate(Bundle savedInstanceState) {
  3. requestWindowFeature(Window.FEATURE_NO_TITLE);
  4. this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN );
  5. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.