Android - Making activity full screen with status bar on top of it

后端 未结 8 1424
北恋
北恋 2020-12-12 19:30

I want to make my activity full screen with status bar on top of it like this picture:

I have used this code in manifest inside activity

8条回答
  •  情歌与酒
    2020-12-12 20:02

    If you dont want your "Translucent navigation" transparent, here is the code to just make transparent the status bar

    In your theme:

        @android:color/transparent
        true
        true
    

    In your activity onCreate:

    Window window = getWindow();
    WindowManager.LayoutParams winParams = window.getAttributes();
    winParams.flags &= ~WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS;
    window.setAttributes(winParams);
    window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
    

提交回复
热议问题