Fullscreen Activity in Android?

后端 未结 30 2271
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-22 00:12

How do I make an activity full screen? I mean without the notification bar. Any ideas?

30条回答
  •  旧时难觅i
    2020-11-22 00:42

    On Android 10, none worked for me.

    But I that worked perfectly fine (1st line in oncreate):

        View decorView = getWindow().getDecorView();
        int uiOptions = View.SYSTEM_UI_FLAG_IMMERSIVE;
        decorView.setSystemUiVisibility(uiOptions);
    
        setContentView(....);
    
        if (getSupportActionBar() != null) {
            getSupportActionBar().hide();
        }
    

    enjoy :)

提交回复
热议问题