Answers for "how to disable status bar android"

0

how to remove status bar in android

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
Posted by: Guest on September-29-2020

Code answers related to "how to disable status bar android"

Browse Popular Code Answers by Language