Skip to content

Instantly share code, notes, and snippets.

@AungWinnHtut
Created July 18, 2016 14:41
Show Gist options
  • Save AungWinnHtut/ee02fc4a85809f731b0ade1472cf1a79 to your computer and use it in GitHub Desktop.
Save AungWinnHtut/ee02fc4a85809f731b0ade1472cf1a79 to your computer and use it in GitHub Desktop.
full screen for android activity
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_cadet_ibook_anylist);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment