Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

android studio remove notification bar

    protected void onResume() {
        super.onResume();
        View decorView = getWindow().getDecorView();
        // Hide the status bar.
        int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
        decorView.setSystemUiVisibility(uiOptions);
    }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #android #studio #remove #notification #bar
ADD COMMENT
Topic
Name
1+3 =