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

后端 未结 8 1408
北恋
北恋 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 19:48

    Put this code in your Activity onCreate this will hide the status bar

    View decorView = getWindow().getDecorView();
    // Hide the status bar.
    int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
    decorView.setSystemUiVisibility(uiOptions);
    // Remember that you should never show the action bar if the
    // status bar is hidden, so hide that too if necessary.
    ActionBar actionBar = getActionBar();
    actionBar.hide();
    

提交回复
热议问题